Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
linville
/
wireless-testing
/
4c656987bd32dd0f1c79db9a3e61bdc3be236694
/
.
/
virt
/
kvm
/
vfio.h
blob: ab88c7dc05143f764a29ee30a9b03167794eb06e [
file
] [
log
] [
blame
]
#ifndef
__KVM_VFIO_H
#define
__KVM_VFIO_H
#ifdef
CONFIG_KVM_VFIO
int
kvm_vfio_ops_init
(
void
);
void
kvm_vfio_ops_exit
(
void
);
#else
static
inline
int
kvm_vfio_ops_init
(
void
)
{
return
0
;
}
static
inline
void
kvm_vfio_ops_exit
(
void
)
{
}
#endif
#endif