projects
/
linux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
selftests: memory-hotplug: silence test command echo
[linux.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
This page took
0.032451 seconds
and
4
git commands to generate.