diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2016-01-29 17:50:03 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-02-04 17:41:30 +0000 |
commit | cae9fc567d89aacfa556917c49bd5399ee24d0fa (patch) | |
tree | fde3c3840f95e9e638c58e06db3fc4f9c545dbf8 | |
parent | 9bbc853bd4fc6e4cbdbfc8d52eab0730d3ba94ba (diff) | |
download | qemu-cae9fc567d89aacfa556917c49bd5399ee24d0fa.zip qemu-cae9fc567d89aacfa556917c49bd5399ee24d0fa.tar.gz qemu-cae9fc567d89aacfa556917c49bd5399ee24d0fa.tar.bz2 |
io: 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: 1454089805-5470-14-git-send-email-peter.maydell@linaro.org
-rw-r--r-- | io/channel-buffer.c | 1 | ||||
-rw-r--r-- | io/channel-command.c | 1 | ||||
-rw-r--r-- | io/channel-file.c | 1 | ||||
-rw-r--r-- | io/channel-socket.c | 1 | ||||
-rw-r--r-- | io/channel-tls.c | 1 | ||||
-rw-r--r-- | io/channel-watch.c | 1 | ||||
-rw-r--r-- | io/channel-websock.c | 1 | ||||
-rw-r--r-- | io/channel.c | 1 | ||||
-rw-r--r-- | io/task.c | 1 |
9 files changed, 9 insertions, 0 deletions
diff --git a/io/channel-buffer.c b/io/channel-buffer.c index daebc92..0f7c567 100644 --- a/io/channel-buffer.c +++ b/io/channel-buffer.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "io/channel-buffer.h" #include "io/channel-watch.h" #include "qemu/sockets.h" diff --git a/io/channel-command.c b/io/channel-command.c index a9c67aa..f53ce0f 100644 --- a/io/channel-command.c +++ b/io/channel-command.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "io/channel-command.h" #include "io/channel-watch.h" #include "qemu/sockets.h" diff --git a/io/channel-file.c b/io/channel-file.c index 1360900..19a4325 100644 --- a/io/channel-file.c +++ b/io/channel-file.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "io/channel-file.h" #include "io/channel-watch.h" #include "qemu/sockets.h" diff --git a/io/channel-socket.c b/io/channel-socket.c index bc117b1..22d2fd6 100644 --- a/io/channel-socket.c +++ b/io/channel-socket.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "io/channel-socket.h" #include "io/channel-watch.h" #include "trace.h" diff --git a/io/channel-tls.c b/io/channel-tls.c index 8ac4f76..7608fd9 100644 --- a/io/channel-tls.c +++ b/io/channel-tls.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "io/channel-tls.h" #include "trace.h" diff --git a/io/channel-watch.c b/io/channel-watch.c index 2f745f1..931fa4d 100644 --- a/io/channel-watch.c +++ b/io/channel-watch.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "io/channel-watch.h" typedef struct QIOChannelFDSource QIOChannelFDSource; diff --git a/io/channel-websock.c b/io/channel-websock.c index 9273a8b..35860a2 100644 --- a/io/channel-websock.c +++ b/io/channel-websock.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "io/channel-websock.h" #include "crypto/hash.h" #include "trace.h" diff --git a/io/channel.c b/io/channel.c index 5e94469..3fc09f8 100644 --- a/io/channel.c +++ b/io/channel.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "io/channel.h" #include "qemu/coroutine.h" @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "io/task.h" #include "qemu/thread.h" #include "trace.h" |