From patchwork Thu Feb 9 20:28:14 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Maydell X-Patchwork-Id: 6729 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id AE25823EAE for ; Thu, 9 Feb 2012 20:28:19 +0000 (UTC) Received: from mail-yw0-f52.google.com (mail-yw0-f52.google.com [209.85.213.52]) by fiordland.canonical.com (Postfix) with ESMTP id 6D39BA18655 for ; Thu, 9 Feb 2012 20:28:19 +0000 (UTC) Received: by yhgm50 with SMTP id m50so1442526yhg.11 for ; Thu, 09 Feb 2012 12:28:19 -0800 (PST) MIME-Version: 1.0 Received: by 10.50.153.133 with SMTP id vg5mr33127875igb.8.1328819298862; Thu, 09 Feb 2012 12:28:18 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.12.131 with SMTP id x3cs53245ibx; Thu, 9 Feb 2012 12:28:17 -0800 (PST) Received: by 10.216.138.24 with SMTP id z24mr9009768wei.48.1328819296900; Thu, 09 Feb 2012 12:28:16 -0800 (PST) Received: from mnementh.archaic.org.uk (mnementh.archaic.org.uk. [81.2.115.146]) by mx.google.com with ESMTPS id n21si2541805wed.87.2012.02.09.12.28.16 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 09 Feb 2012 12:28:16 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) client-ip=81.2.115.146; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of pm215@archaic.org.uk designates 81.2.115.146 as permitted sender) smtp.mail=pm215@archaic.org.uk Received: from pm215 by mnementh.archaic.org.uk with local (Exim 4.72) (envelope-from ) id 1RvabG-0000NY-Mc; Thu, 09 Feb 2012 20:28:14 +0000 From: Peter Maydell To: qemu-devel@nongnu.org Cc: patches@linaro.org Subject: [PATCH 3/3] Remove unnecessary includes of primecell.h Date: Thu, 9 Feb 2012 20:28:14 +0000 Message-Id: <1328819294-1427-4-git-send-email-peter.maydell@linaro.org> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1328819294-1427-1-git-send-email-peter.maydell@linaro.org> References: <1328819294-1427-1-git-send-email-peter.maydell@linaro.org> X-Gm-Message-State: ALoCoQlH5Ps9RY12HRckXBxlqD65cpl0W/GR3g/hha0BuXkNn6McvYQpdmPg1oTaT05gG1WHvBFs The primecell.h header now only has the definitions of constants indicating the usage of the arm_sysctl GPIO lines; remove obsolete includes of it from source files which don't care about those GPIO lines. Signed-off-by: Peter Maydell --- hw/highbank.c | 1 - hw/integratorcp.c | 1 - hw/pl022.c | 1 - hw/versatilepb.c | 1 - 4 files changed, 0 insertions(+), 4 deletions(-) diff --git a/hw/highbank.c b/hw/highbank.c index 684178e..5aca589 100644 --- a/hw/highbank.c +++ b/hw/highbank.c @@ -19,7 +19,6 @@ #include "sysbus.h" #include "arm-misc.h" -#include "primecell.h" #include "devices.h" #include "loader.h" #include "net.h" diff --git a/hw/integratorcp.c b/hw/integratorcp.c index 6dbd649..e919961 100644 --- a/hw/integratorcp.c +++ b/hw/integratorcp.c @@ -8,7 +8,6 @@ */ #include "sysbus.h" -#include "primecell.h" #include "devices.h" #include "boards.h" #include "arm-misc.h" diff --git a/hw/pl022.c b/hw/pl022.c index 30bd344..1e494ce 100644 --- a/hw/pl022.c +++ b/hw/pl022.c @@ -9,7 +9,6 @@ #include "sysbus.h" #include "ssi.h" -#include "primecell.h" //#define DEBUG_PL022 1 diff --git a/hw/versatilepb.c b/hw/versatilepb.c index 6ea0ce5..58acaff 100644 --- a/hw/versatilepb.c +++ b/hw/versatilepb.c @@ -9,7 +9,6 @@ #include "sysbus.h" #include "arm-misc.h" -#include "primecell.h" #include "devices.h" #include "net.h" #include "sysemu.h"