From patchwork Thu Feb 2 21:12:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 139236 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id AFF43104785 for ; Fri, 3 Feb 2012 08:49:11 +1100 (EST) Received: from localhost ([::1]:41646 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt3ye-0000EW-7q for incoming@patchwork.ozlabs.org; Thu, 02 Feb 2012 16:13:56 -0500 Received: from eggs.gnu.org ([140.186.70.92]:36920) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt3xx-0006YG-5i for qemu-devel@nongnu.org; Thu, 02 Feb 2012 16:13:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rt3xq-0000J7-GA for qemu-devel@nongnu.org; Thu, 02 Feb 2012 16:13:12 -0500 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:40231) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt3xp-0000I7-ID for qemu-devel@nongnu.org; Thu, 02 Feb 2012 16:13:06 -0500 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id C7E887280098; Thu, 2 Feb 2012 22:13:04 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0neOYpSGsDwi; Thu, 2 Feb 2012 22:13:02 +0100 (CET) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id 084BF728009E; Thu, 2 Feb 2012 22:13:01 +0100 (CET) From: Stefan Weil To: qemu-devel@nongnu.org Date: Thu, 2 Feb 2012 22:12:48 +0100 Message-Id: <1328217177-32745-7-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.7.3 In-Reply-To: <1328217177-32745-1-git-send-email-sw@weilnetz.de> References: <1328217177-32745-1-git-send-email-sw@weilnetz.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 78.47.199.172 Cc: Stefan Weil , Michael Walle Subject: [Qemu-devel] [PATCH 06/15] target-lm32: Clean 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+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org config.h was missing in cpu.h. Cc: Michael Walle Signed-off-by: Stefan Weil Acked-by: Michael Walle --- target-lm32/cpu.h | 1 + target-lm32/helper.c | 5 ----- target-lm32/translate.c | 8 -------- 3 files changed, 1 insertions(+), 13 deletions(-) diff --git a/target-lm32/cpu.h b/target-lm32/cpu.h index 037ef52..b6b6b4c 100644 --- a/target-lm32/cpu.h +++ b/target-lm32/cpu.h @@ -24,6 +24,7 @@ #define CPUState struct CPULM32State +#include "config.h" #include "qemu-common.h" #include "cpu-defs.h" struct CPULM32State; diff --git a/target-lm32/helper.c b/target-lm32/helper.c index fc0b444..2637c03 100644 --- a/target-lm32/helper.c +++ b/target-lm32/helper.c @@ -17,11 +17,6 @@ * License along with this library; if not, see . */ -#include -#include -#include - -#include "config.h" #include "cpu.h" #include "host-utils.h" diff --git a/target-lm32/translate.c b/target-lm32/translate.c index 0be105d..c80e48b 100644 --- a/target-lm32/translate.c +++ b/target-lm32/translate.c @@ -17,18 +17,10 @@ * License along with this library; if not, see . */ -#include -#include -#include -#include -#include -#include - #include "cpu.h" #include "disas.h" #include "helper.h" #include "tcg-op.h" -#include "qemu-common.h" #include "hw/lm32_pic.h"