mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-01 14:52:32 +00:00
14 lines
173 B
C
14 lines
173 B
C
|
#ifndef __KVM_VFIO_H
|
||
|
#define __KVM_VFIO_H
|
||
|
|
||
|
#ifdef CONFIG_KVM_VFIO
|
||
|
int kvm_vfio_ops_init(void);
|
||
|
#else
|
||
|
static inline int kvm_vfio_ops_init(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|