Skip to content

Commit

Permalink
io: Clean up includes
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pm215 committed Feb 4, 2016
1 parent 9bbc853 commit cae9fc5
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions io/channel-buffer.c
Expand Up @@ -18,6 +18,7 @@
*
*/

#include "qemu/osdep.h"
#include "io/channel-buffer.h"
#include "io/channel-watch.h"
#include "qemu/sockets.h"
Expand Down
1 change: 1 addition & 0 deletions io/channel-command.c
Expand Up @@ -18,6 +18,7 @@
*
*/

#include "qemu/osdep.h"
#include "io/channel-command.h"
#include "io/channel-watch.h"
#include "qemu/sockets.h"
Expand Down
1 change: 1 addition & 0 deletions io/channel-file.c
Expand Up @@ -18,6 +18,7 @@
*
*/

#include "qemu/osdep.h"
#include "io/channel-file.h"
#include "io/channel-watch.h"
#include "qemu/sockets.h"
Expand Down
1 change: 1 addition & 0 deletions io/channel-socket.c
Expand Up @@ -18,6 +18,7 @@
*
*/

#include "qemu/osdep.h"
#include "io/channel-socket.h"
#include "io/channel-watch.h"
#include "trace.h"
Expand Down
1 change: 1 addition & 0 deletions io/channel-tls.c
Expand Up @@ -18,6 +18,7 @@
*
*/

#include "qemu/osdep.h"
#include "io/channel-tls.h"
#include "trace.h"

Expand Down
1 change: 1 addition & 0 deletions io/channel-watch.c
Expand Up @@ -18,6 +18,7 @@
*
*/

#include "qemu/osdep.h"
#include "io/channel-watch.h"

typedef struct QIOChannelFDSource QIOChannelFDSource;
Expand Down
1 change: 1 addition & 0 deletions io/channel-websock.c
Expand Up @@ -18,6 +18,7 @@
*
*/

#include "qemu/osdep.h"
#include "io/channel-websock.h"
#include "crypto/hash.h"
#include "trace.h"
Expand Down
1 change: 1 addition & 0 deletions io/channel.c
Expand Up @@ -18,6 +18,7 @@
*
*/

#include "qemu/osdep.h"
#include "io/channel.h"
#include "qemu/coroutine.h"

Expand Down
1 change: 1 addition & 0 deletions io/task.c
Expand Up @@ -18,6 +18,7 @@
*
*/

#include "qemu/osdep.h"
#include "io/task.h"
#include "qemu/thread.h"
#include "trace.h"
Expand Down

0 comments on commit cae9fc5

Please sign in to comment.