From patchwork Tue Jan 26 18:17:26 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 8125731 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 C998F9F859 for ; Tue, 26 Jan 2016 18:19:48 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 081CB202BE for ; Tue, 26 Jan 2016 18:19:48 +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 247D52028D for ; Tue, 26 Jan 2016 18:19:47 +0000 (UTC) Received: from localhost ([::1]:45851 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO8DS-0001AL-Cq for patchwork-qemu-devel@patchwork.kernel.org; Tue, 26 Jan 2016 13:19:46 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35515) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO8BM-0006FP-7Z for qemu-devel@nongnu.org; Tue, 26 Jan 2016 13:17:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aO8BL-0007VZ-70 for qemu-devel@nongnu.org; Tue, 26 Jan 2016 13:17:36 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:59628) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO8BK-0007UI-TU for qemu-devel@nongnu.org; Tue, 26 Jan 2016 13:17:35 -0500 Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.80) (envelope-from ) id 1aO8BI-0000FQ-7v; Tue, 26 Jan 2016 18:17:32 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Date: Tue, 26 Jan 2016 18:17:26 +0000 Message-Id: <1453832250-766-34-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 33/37] tricore: 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 --- hw/tricore/tricore_testboard.c | 1 + target-tricore/cpu.c | 1 + target-tricore/helper.c | 6 +----- target-tricore/op_helper.c | 2 +- target-tricore/translate.c | 1 + 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/hw/tricore/tricore_testboard.c b/hw/tricore/tricore_testboard.c index 4ff5e7b..9392571 100644 --- a/hw/tricore/tricore_testboard.c +++ b/hw/tricore/tricore_testboard.c @@ -18,6 +18,7 @@ */ +#include "qemu/osdep.h" #include "hw/hw.h" #include "hw/devices.h" #include "net/net.h" diff --git a/target-tricore/cpu.c b/target-tricore/cpu.c index ed8b030..f8b8518 100644 --- a/target-tricore/cpu.c +++ b/target-tricore/cpu.c @@ -17,6 +17,7 @@ * License along with this library; if not, see . */ +#include "qemu/osdep.h" #include "cpu.h" #include "qemu-common.h" diff --git a/target-tricore/helper.c b/target-tricore/helper.c index 1b70429..a8fd418 100644 --- a/target-tricore/helper.c +++ b/target-tricore/helper.c @@ -15,11 +15,7 @@ * License along with this library; if not, see . */ -#include -#include -#include -#include -#include +#include "qemu/osdep.h" #include "cpu.h" diff --git a/target-tricore/op_helper.c b/target-tricore/op_helper.c index 53edbda..3aa6326 100644 --- a/target-tricore/op_helper.c +++ b/target-tricore/op_helper.c @@ -14,7 +14,7 @@ * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see . */ -#include +#include "qemu/osdep.h" #include "cpu.h" #include "qemu/host-utils.h" #include "exec/helper-proto.h" diff --git a/target-tricore/translate.c b/target-tricore/translate.c index 135c583..2b07b86 100644 --- a/target-tricore/translate.c +++ b/target-tricore/translate.c @@ -18,6 +18,7 @@ */ +#include "qemu/osdep.h" #include "cpu.h" #include "disas/disas.h" #include "tcg-op.h"