aboutsummaryrefslogtreecommitdiff
path: root/include/hw/vfio
diff options
context:
space:
mode:
authorKim Phillips <kim.phillips@linaro.org>2014-12-19 15:24:06 -0700
committerAlex Williamson <alex.williamson@redhat.com>2014-12-19 15:24:06 -0700
commitcf7087db10e2dc112e02782f1d1eb56ec42c728b (patch)
tree246b3829a5c2da7af4a3081b78315edc99019e3d /include/hw/vfio
parentc67676711c7202f48bc43d2f80125eaea355755e (diff)
vfio: move hw/misc/vfio.c to hw/vfio/pci.c Move vfio.h into include/hw/vfio
This is done in preparation for the addition of VFIO platform device support. Signed-off-by: Kim Phillips <kim.phillips@linaro.org> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'include/hw/vfio')
-rw-r--r--include/hw/vfio/vfio.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/hw/vfio/vfio.h b/include/hw/vfio/vfio.h
new file mode 100644
index 0000000000..0b26cd8e11
--- /dev/null
+++ b/include/hw/vfio/vfio.h
@@ -0,0 +1,9 @@
+#ifndef VFIO_API_H
+#define VFIO_API_H
+
+#include "qemu/typedefs.h"
+
+extern int vfio_container_ioctl(AddressSpace *as, int32_t groupid,
+ int req, void *param);
+
+#endif