mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-16 23:06:54 +07: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
|