summaryrefslogtreecommitdiffstats
path: root/hw/xenfb.c
diff options
context:
space:
mode:
authorAnthony PERARD2012-06-21 13:43:59 +0200
committerStefano Stabellini2012-06-21 13:43:59 +0200
commitb41f67197208e7b72ba2207473a74b89a821190a (patch)
tree6866bf59bf89f88c60d97927f635d42b9041013f /hw/xenfb.c
parentAllow machines to configure the QEMU_VERSION that's exposed via hardware (diff)
downloadqemu-b41f67197208e7b72ba2207473a74b89a821190a.tar.gz
qemu-b41f67197208e7b72ba2207473a74b89a821190a.tar.xz
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/xenfb.c')
-rw-r--r--hw/xenfb.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/hw/xenfb.c b/hw/xenfb.c
index 1bcf171b01..338800a4d9 100644
--- a/hw/xenfb.c
+++ b/hw/xenfb.c
@@ -35,19 +35,16 @@
#include <string.h>
#include <time.h>
-#include <xs.h>
-#include <xenctrl.h>
-#include <xen/event_channel.h>
-#include <xen/io/xenbus.h>
-#include <xen/io/fbif.h>
-#include <xen/io/kbdif.h>
-#include <xen/io/protocols.h>
-
#include "hw.h"
#include "console.h"
#include "qemu-char.h"
#include "xen_backend.h"
+#include <xen/event_channel.h>
+#include <xen/io/fbif.h>
+#include <xen/io/kbdif.h>
+#include <xen/io/protocols.h>
+
#ifndef BTN_LEFT
#define BTN_LEFT 0x110 /* from <linux/input.h> */
#endif