net: sched: fix crash when deleting secondary chains
[linux-2.6/btrfs-unstable.git] / virt / kvm / vfio.h
blobe130a4a03530da514e88224030c67191ba7f2227
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __KVM_VFIO_H
3 #define __KVM_VFIO_H
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)
11 return 0;
13 static inline void kvm_vfio_ops_exit(void)
16 #endif
18 #endif