summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2011-03-27 14:31:31 +0000
committerBlue Swirl <blauwirbel@gmail.com>2011-04-15 18:25:44 +0000
commitd8dfad9c41c3431dbb97ad722a93e6ad1e9e9279 (patch)
treeeea58d372daea42fef371162c966ebe0e0272bce
parenta08784dd11794fc60fcc724c7ef2cd1a75a5356d (diff)
downloadfocaccia-qemu-d8dfad9c41c3431dbb97ad722a93e6ad1e9e9279.tar.gz
focaccia-qemu-d8dfad9c41c3431dbb97ad722a93e6ad1e9e9279.zip
Use qemu-common.h or qemu-timer.h in place of sysemu.h
In some cases qemu-common.h or qemu-timer.h can be used in place
of sysemu.h.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r--hw/pcie.c3
-rw-r--r--hw/usb-hid.c2
-rw-r--r--net/dump.c2
3 files changed, 3 insertions, 4 deletions
diff --git a/hw/pcie.c b/hw/pcie.c
index 6a113a9327..9de6149043 100644
--- a/hw/pcie.c
+++ b/hw/pcie.c
@@ -18,8 +18,7 @@
  * with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#include "sysemu.h"
-#include "range.h"
+#include "qemu-common.h"
 #include "pci_bridge.h"
 #include "pcie.h"
 #include "msix.h"
diff --git a/hw/usb-hid.c b/hw/usb-hid.c
index c25362cc95..89c293c466 100644
--- a/hw/usb-hid.c
+++ b/hw/usb-hid.c
@@ -26,7 +26,7 @@
 #include "console.h"
 #include "usb.h"
 #include "usb-desc.h"
-#include "sysemu.h"
+#include "qemu-timer.h"
 
 /* HID interface requests */
 #define GET_REPORT   0xa101
diff --git a/net/dump.c b/net/dump.c
index 83eda0fcc6..0d0cbb2591 100644
--- a/net/dump.c
+++ b/net/dump.c
@@ -24,9 +24,9 @@
 
 #include "dump.h"
 #include "qemu-common.h"
-#include "sysemu.h"
 #include "qemu-error.h"
 #include "qemu-log.h"
+#include "qemu-timer.h"
 
 typedef struct DumpState {
     VLANClientState nc;