swh:1:snp:3c665ee4f67729f27f2e40193ab88e7298cf0fef
Raw File
Tip revision: f114040e3ea6e07372334ade75d1ee0775c355e1 authored by Linus Torvalds on 20 October 2014, 01:08:38 UTC
Linux 3.18-rc1
Tip revision: f114040
vfio.h
#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
back to top