Merge tag 'for-linus-4.15-rc8-tag' of git://git.kernel.org/pub/scm/linux/kernel/git...
[sfrench/cifs-2.6.git] / virt / kvm / vfio.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __KVM_VFIO_H
3 #define __KVM_VFIO_H
4
5 #ifdef CONFIG_KVM_VFIO
6 int kvm_vfio_ops_init(void);
7 void kvm_vfio_ops_exit(void);
8 #else
9 static inline int kvm_vfio_ops_init(void)
10 {
11         return 0;
12 }
13 static inline void kvm_vfio_ops_exit(void)
14 {
15 }
16 #endif
17
18 #endif