diff options
author | Anthony PERARD <anthony.perard@citrix.com> | 2012-06-21 11:43:59 +0000 |
---|---|---|
committer | Stefano Stabellini <stefano.stabellini@eu.citrix.com> | 2012-06-21 11:43:59 +0000 |
commit | b41f67197208e7b72ba2207473a74b89a821190a (patch) | |
tree | 6866bf59bf89f88c60d97927f635d42b9041013f /hw/xen_nic.c | |
parent | 93bfef4c6e4b23caea9d51e1099d06433d8835a4 (diff) | |
download | qemu-b41f67197208e7b72ba2207473a74b89a821190a.tar.gz qemu-b41f67197208e7b72ba2207473a74b89a821190a.tar.bz2 qemu-b41f67197208e7b72ba2207473a74b89a821190a.zip |
xen: Reorganize includes of Xen headers.
Because xs.h will be remove in future release of Xen, this patch removes the
extra includes of this headers.
Also, it removes the extra includes of xenctrl.h and xen/io/xenbus.h as there
already are in xen_common.h.
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Diffstat (limited to 'hw/xen_nic.c')
-rw-r--r-- | hw/xen_nic.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/hw/xen_nic.c b/hw/xen_nic.c index 9a59bdad6e..98db9bb8f6 100644 --- a/hw/xen_nic.c +++ b/hw/xen_nic.c @@ -35,11 +35,6 @@ #include <sys/mman.h> #include <sys/wait.h> -#include <xs.h> -#include <xenctrl.h> -#include <xen/io/xenbus.h> -#include <xen/io/netif.h> - #include "hw.h" #include "net.h" #include "net/checksum.h" @@ -47,6 +42,8 @@ #include "qemu-char.h" #include "xen_backend.h" +#include <xen/io/netif.h> + /* ------------------------------------------------------------- */ struct XenNetDev { |