diff options
author | Alex Williamson <alex.williamson@redhat.com> | 2013-04-01 13:35:40 -0600 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2013-04-01 13:35:40 -0600 |
commit | 6dcfdbad69aa510bc87b4a2585a597e028ca4eaa (patch) | |
tree | 95379c7576e27e77825df3e837d026e14854e4cf /hw | |
parent | c29029dd8829827ef8af3a6fb18f9df929ffc6b7 (diff) |
vfio: cleanup includes
Starting to get messy, put the back in alphabetical order.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/vfio_pci.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hw/vfio_pci.c b/hw/vfio_pci.c index 0d2a4451d7..693a9ffdda 100644 --- a/hw/vfio_pci.c +++ b/hw/vfio_pci.c @@ -19,26 +19,26 @@ */ #include <dirent.h> -#include <unistd.h> +#include <linux/vfio.h> #include <sys/ioctl.h> #include <sys/mman.h> #include <sys/stat.h> #include <sys/types.h> -#include <linux/vfio.h> +#include <unistd.h> #include "config.h" -#include "qemu/event_notifier.h" #include "exec/address-spaces.h" -#include "sysemu/kvm.h" -#include "sysemu/sysemu.h" #include "exec/memory.h" #include "hw/pci/msi.h" #include "hw/pci/msix.h" #include "hw/pci/pci.h" #include "qemu-common.h" #include "qemu/error-report.h" +#include "qemu/event_notifier.h" #include "qemu/queue.h" #include "qemu/range.h" +#include "sysemu/kvm.h" +#include "sysemu/sysemu.h" /* #define DEBUG_VFIO */ #ifdef DEBUG_VFIO |