From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37148) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMksC-0007Tl-15 for qemu-devel@nongnu.org; Mon, 01 Apr 2013 15:58:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UMks7-0003As-3m for qemu-devel@nongnu.org; Mon, 01 Apr 2013 15:58:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56339) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UMks6-0003Ah-QY for qemu-devel@nongnu.org; Mon, 01 Apr 2013 15:58:26 -0400 From: Alex Williamson Date: Mon, 01 Apr 2013 13:58:25 -0600 Message-ID: <20130401195825.17115.71853.stgit@bling.home> In-Reply-To: <20130401195242.17115.51929.stgit@bling.home> References: <20130401195242.17115.51929.stgit@bling.home> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH 9/9] vfio: cleanup includes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com, qemu-devel@nongnu.org Cc: kvm@vger.kernel.org Starting to get messy, put the back in alphabetical order. Signed-off-by: Alex Williamson --- hw/vfio_pci.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hw/vfio_pci.c b/hw/vfio_pci.c index 0d2a445..693a9ff 100644 --- a/hw/vfio_pci.c +++ b/hw/vfio_pci.c @@ -19,26 +19,26 @@ */ #include -#include +#include #include #include #include #include -#include +#include #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