From patchwork Fri Jan 29 17:50:03 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 8165721 Return-Path: X-Original-To: patchwork-qemu-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id E7D90BEEE5 for ; Fri, 29 Jan 2016 17:56:20 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4ADDF20320 for ; Fri, 29 Jan 2016 17:56:20 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 84FF4201C0 for ; Fri, 29 Jan 2016 17:56:19 +0000 (UTC) Received: from localhost ([::1]:35836 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aPDHO-0006RA-VE for patchwork-qemu-devel@patchwork.kernel.org; Fri, 29 Jan 2016 12:56:18 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51721) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aPDBR-0002xp-Mv for qemu-devel@nongnu.org; Fri, 29 Jan 2016 12:50:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aPDBQ-0001vA-Jx for qemu-devel@nongnu.org; Fri, 29 Jan 2016 12:50:09 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:59685) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aPDBQ-0001uk-Cr for qemu-devel@nongnu.org; Fri, 29 Jan 2016 12:50:08 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1aPDBO-0001Rv-7Q; Fri, 29 Jan 2016 17:50:06 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Date: Fri, 29 Jan 2016 17:50:03 +0000 Message-Id: <1454089805-5470-14-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1454089805-5470-1-git-send-email-peter.maydell@linaro.org> References: <1454089805-5470-1-git-send-email-peter.maydell@linaro.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 2001:8b0:1d0::1 Cc: patches@linaro.org Subject: [Qemu-devel] [PATCH 13/15] io: Clean up includes X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 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 --- io/channel-buffer.c | 1 + io/channel-command.c | 1 + io/channel-file.c | 1 + io/channel-socket.c | 1 + io/channel-tls.c | 1 + io/channel-watch.c | 1 + io/channel-websock.c | 1 + io/channel.c | 1 + io/task.c | 1 + 9 files changed, 9 insertions(+) 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" diff --git a/io/task.c b/io/task.c index 3127fca..bf1a333 100644 --- a/io/task.c +++ b/io/task.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "io/task.h" #include "qemu/thread.h" #include "trace.h"