From patchwork Tue Jan 26 18:16:55 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 8126161 Return-Path: X-Original-To: patchwork-qemu-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 263539F6DA for ; Tue, 26 Jan 2016 18:32:22 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6C68420256 for ; Tue, 26 Jan 2016 18:32:21 +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 980E4201FE for ; Tue, 26 Jan 2016 18:32:20 +0000 (UTC) Received: from localhost ([::1]:46024 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO8Pc-0000S8-1M for patchwork-qemu-devel@patchwork.kernel.org; Tue, 26 Jan 2016 13:32:20 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35857) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO8BU-0006Tu-ME for qemu-devel@nongnu.org; Tue, 26 Jan 2016 13:17:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aO8BS-0007cd-6R for qemu-devel@nongnu.org; Tue, 26 Jan 2016 13:17:44 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:59658) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO8BR-0007bp-PB for qemu-devel@nongnu.org; Tue, 26 Jan 2016 13:17:42 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1aO8BG-0000Cw-Rd; Tue, 26 Jan 2016 18:17:30 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Date: Tue, 26 Jan 2016 18:16:55 +0000 Message-Id: <1453832250-766-3-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1453832250-766-1-git-send-email-peter.maydell@linaro.org> References: <1453832250-766-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 02/37] crypto: 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 --- crypto/aes.c | 1 + crypto/cipher-builtin.c | 1 + crypto/cipher-gcrypt.c | 1 + crypto/cipher-nettle.c | 1 + crypto/cipher.c | 1 + crypto/desrfb.c | 1 + crypto/hash.c | 1 + crypto/init.c | 1 + crypto/secret.c | 1 + crypto/tlscreds.c | 1 + crypto/tlscredsanon.c | 1 + crypto/tlscredsx509.c | 1 + crypto/tlssession.c | 1 + 13 files changed, 13 insertions(+) diff --git a/crypto/aes.c b/crypto/aes.c index 244a388..3456eac 100644 --- a/crypto/aes.c +++ b/crypto/aes.c @@ -27,6 +27,7 @@ * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "qemu/osdep.h" #include "qemu-common.h" #include "crypto/aes.h" diff --git a/crypto/cipher-builtin.c b/crypto/cipher-builtin.c index 39e31a7..138b7a0 100644 --- a/crypto/cipher-builtin.c +++ b/crypto/cipher-builtin.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "crypto/aes.h" #include "crypto/desrfb.h" diff --git a/crypto/cipher-gcrypt.c b/crypto/cipher-gcrypt.c index c4f8114..56d4c9d 100644 --- a/crypto/cipher-gcrypt.c +++ b/crypto/cipher-gcrypt.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include diff --git a/crypto/cipher-nettle.c b/crypto/cipher-nettle.c index 7449338..cd2675c 100644 --- a/crypto/cipher-nettle.c +++ b/crypto/cipher-nettle.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include #include #include diff --git a/crypto/cipher.c b/crypto/cipher.c index 7c33348..076dff0 100644 --- a/crypto/cipher.c +++ b/crypto/cipher.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "crypto/cipher.h" diff --git a/crypto/desrfb.c b/crypto/desrfb.c index fc20a30..ec47dea 100644 --- a/crypto/desrfb.c +++ b/crypto/desrfb.c @@ -26,6 +26,7 @@ * (GEnie : OUTER; CIS : [71755,204]) Graven Imagery, 1992. */ +#include "qemu/osdep.h" #include "crypto/desrfb.h" static void scrunch(unsigned char *, unsigned long *); diff --git a/crypto/hash.c b/crypto/hash.c index 6e83f43..33324b6 100644 --- a/crypto/hash.c +++ b/crypto/hash.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "crypto/hash.h" #ifdef CONFIG_GNUTLS_HASH diff --git a/crypto/init.c b/crypto/init.c index d94faac..31eea19 100644 --- a/crypto/init.c +++ b/crypto/init.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "crypto/init.h" #include "qemu/thread.h" diff --git a/crypto/secret.c b/crypto/secret.c index a799da1..90592c0 100644 --- a/crypto/secret.c +++ b/crypto/secret.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "crypto/secret.h" #include "crypto/cipher.h" #include "qom/object_interfaces.h" diff --git a/crypto/tlscreds.c b/crypto/tlscreds.c index e7d9c1c..38bb671 100644 --- a/crypto/tlscreds.c +++ b/crypto/tlscreds.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "crypto/tlscredspriv.h" #include "trace.h" diff --git a/crypto/tlscredsanon.c b/crypto/tlscredsanon.c index c3fcdaf..55e2047 100644 --- a/crypto/tlscredsanon.c +++ b/crypto/tlscredsanon.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "crypto/tlscredsanon.h" #include "crypto/tlscredspriv.h" #include "qom/object_interfaces.h" diff --git a/crypto/tlscredsx509.c b/crypto/tlscredsx509.c index d58fdea..8664b82 100644 --- a/crypto/tlscredsx509.c +++ b/crypto/tlscredsx509.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "crypto/tlscredsx509.h" #include "crypto/tlscredspriv.h" #include "crypto/secret.h" diff --git a/crypto/tlssession.c b/crypto/tlssession.c index 3735529..e0d9658 100644 --- a/crypto/tlssession.c +++ b/crypto/tlssession.c @@ -18,6 +18,7 @@ * */ +#include "qemu/osdep.h" #include "crypto/tlssession.h" #include "crypto/tlscredsanon.h" #include "crypto/tlscredsx509.h"