root/virt/kvm/vfio.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. kvm_vfio_ops_init
  2. kvm_vfio_ops_exit

   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

/* [<][>][^][v][top][bottom][index][help] */