projects
/
platform
/
kernel
/
linux-starfive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'fix/amd' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[platform/kernel/linux-starfive.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