From patchwork Fri Aug 5 10:24:44 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 3280 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 0E8F923F46 for ; Fri, 5 Aug 2011 10:24:58 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id C3DA4A18203 for ; Fri, 5 Aug 2011 10:24:57 +0000 (UTC) Received: by qyk31 with SMTP id 31so1098520qyk.11 for ; Fri, 05 Aug 2011 03:24:57 -0700 (PDT) Received: by 10.229.21.194 with SMTP id k2mr1538651qcb.235.1312539897165; Fri, 05 Aug 2011 03:24:57 -0700 (PDT) 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.229.6.73 with SMTP id 9cs42452qcy; Fri, 5 Aug 2011 03:24:56 -0700 (PDT) Received: by 10.204.137.155 with SMTP id w27mr680437bkt.104.1312539896153; Fri, 05 Aug 2011 03:24:56 -0700 (PDT) Received: from mail.df.lth.se (mail.df.lth.se [194.47.250.12]) by mx.google.com with ESMTPS id g13si4345787bke.5.2011.08.05.03.24.55 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 05 Aug 2011 03:24:56 -0700 (PDT) Received-SPF: neutral (google.com: 194.47.250.12 is neither permitted nor denied by best guess record for domain of linus.walleij@linaro.org) client-ip=194.47.250.12; Authentication-Results: mx.google.com; spf=neutral (google.com: 194.47.250.12 is neither permitted nor denied by best guess record for domain of linus.walleij@linaro.org) smtp.mail=linus.walleij@linaro.org Received: from localhost.localdomain (unknown [109.234.204.184]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.df.lth.se (Postfix) with ESMTPSA id D53D465D68; Fri, 5 Aug 2011 12:24:54 +0200 (CEST) From: Linus Walleij To: linux-arm-kernel@lists.infradead.org Cc: Lee Jones , Linus Walleij Subject: [PATCH] mach-sa1100: fix PCI build problem Date: Fri, 5 Aug 2011 12:24:44 +0200 Message-Id: <1312539884-10631-1-git-send-email-linus.walleij@linaro.org> X-Mailer: git-send-email 1.7.6 The PCI nanoengine driver in the SA1100 machine probably has not been building for some time. It probably dragged hardware.h in implicitly and now it doesn't anymore. After this an SA1100 build selecting all system variants will build successfully. Signed-off-by: Linus Walleij --- arch/arm/mach-sa1100/pci-nanoengine.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-sa1100/pci-nanoengine.c b/arch/arm/mach-sa1100/pci-nanoengine.c index 964c6c3..dd39fee 100644 --- a/arch/arm/mach-sa1100/pci-nanoengine.c +++ b/arch/arm/mach-sa1100/pci-nanoengine.c @@ -28,6 +28,7 @@ #include #include +#include static DEFINE_SPINLOCK(nano_lock);