diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-26 18:17:07 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-01-29 15:07:23 +0000 |
commit | 9b8bfe21bee37ced21aa57c89388c2ebea8c3f31 (patch) | |
tree | 72d54fd3bf8032a69fb9add22f9ecc55672cdd2f /hw/input | |
parent | 21cbfe5f37aaa3a13d3af28454e762c05be67429 (diff) |
virtio: Clean up includes
Clean up includes so that osdep.h is included first and headers
which it implies are not included manually.
This commit was created with scripts/clean-includes.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1453832250-766-15-git-send-email-peter.maydell@linaro.org
Diffstat (limited to 'hw/input')
-rw-r--r-- | hw/input/virtio-input-hid.c | 1 | ||||
-rw-r--r-- | hw/input/virtio-input-host.c | 1 | ||||
-rw-r--r-- | hw/input/virtio-input.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/hw/input/virtio-input-hid.c b/hw/input/virtio-input-hid.c index a78d11c041..c4af0be9ac 100644 --- a/hw/input/virtio-input-hid.c +++ b/hw/input/virtio-input-hid.c @@ -4,6 +4,7 @@ * top-level directory. */ +#include "qemu/osdep.h" #include "qemu/iov.h" #include "hw/qdev.h" diff --git a/hw/input/virtio-input-host.c b/hw/input/virtio-input-host.c index 8978f16bae..ddee54cb7d 100644 --- a/hw/input/virtio-input-host.c +++ b/hw/input/virtio-input-host.c @@ -4,6 +4,7 @@ * top-level directory. */ +#include "qemu/osdep.h" #include "qemu-common.h" #include "qemu/sockets.h" diff --git a/hw/input/virtio-input.c b/hw/input/virtio-input.c index 1f5a40de35..f12ed8a504 100644 --- a/hw/input/virtio-input.c +++ b/hw/input/virtio-input.c @@ -4,6 +4,7 @@ * top-level directory. */ +#include "qemu/osdep.h" #include "qemu/iov.h" #include "hw/qdev.h" |