From patchwork Wed Aug 29 22:31:30 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rob Herring X-Patchwork-Id: 1386001 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 504243FC71 for ; Wed, 29 Aug 2012 22:36:07 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1T6qob-0002di-KK; Wed, 29 Aug 2012 22:32:49 +0000 Received: from mail-pz0-f49.google.com ([209.85.210.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1T6qnp-0002VM-LZ for linux-arm-kernel@lists.infradead.org; Wed, 29 Aug 2012 22:32:02 +0000 Received: by dajq27 with SMTP id q27so745133daj.36 for ; Wed, 29 Aug 2012 15:32:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=3VL+RsrnnJe4ws3xXUaOP2hBNejXTeJEnCUDSfFFG20=; b=wFoN3tjQ2tiTgd+1M/fOayxdYBZtUhwJtpve8p/s4hAvCdPt6VfW+OckiRlZm+Fc6A 5/j1+dKfuNWsnp3BDvkdn7EpYFVLe/qfOypoBE8UF2PdXjna5IkIxJ9dE+F5c8wZzE09 ACLkAsArqmvNx66Ox1Jgc7I0qcMqGtH/WtpGXq1DBdQSk8LQBcBJyyJQyroX9+ppx/eY 5af4MmDlW5PYhNkz2SGIoj7n7+yivVUFFypYR0lu1D5TyCl5B4mO7YHTQuVFNjaoxz/o THZFelv3EcRZV8BZszE6waFi7cpfKXgqP1A/rhcDt/UXX4TqMHMV0tY+wsdBcYBFG9qU Q5ug== Received: by 10.68.129.131 with SMTP id nw3mr7602000pbb.43.1346279520821; Wed, 29 Aug 2012 15:32:00 -0700 (PDT) Received: from rob-laptop.msi.event ([38.96.16.75]) by mx.google.com with ESMTPS id pn4sm145400pbb.50.2012.08.29.15.31.58 (version=SSLv3 cipher=OTHER); Wed, 29 Aug 2012 15:31:59 -0700 (PDT) From: Rob Herring To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 04/10] net: pxaficp_ir: add explicit mach/gpio.h includes Date: Wed, 29 Aug 2012 17:31:30 -0500 Message-Id: <1346279496-26286-5-git-send-email-robherring2@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1346279496-26286-1-git-send-email-robherring2@gmail.com> References: <1346279496-26286-1-git-send-email-robherring2@gmail.com> X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.5 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.5 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.210.49 listed in list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (robherring2[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record 0.2 FREEMAIL_ENVFROM_END_DIGIT Envelope-from freemail username ends in digit (robherring2[at]gmail.com) -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Olof Johansson , Linus Walleij , Samuel Ortiz , Rob Herring , Arnd Bergmann X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org From: Rob Herring In preparation to remove implicit inclusion of mach/gpio.h, add explict include of mach/gpio.h. Signed-off-by: Rob Herring Cc: Samuel Ortiz --- drivers/net/irda/pxaficp_ir.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/irda/pxaficp_ir.c b/drivers/net/irda/pxaficp_ir.c index 8d54767..e7e3e79 100644 --- a/drivers/net/irda/pxaficp_ir.c +++ b/drivers/net/irda/pxaficp_ir.c @@ -29,8 +29,9 @@ #include #include -#include +#include #include +#include #define FICP __REG(0x40800000) /* Start of FICP area */ #define ICCR0 __REG(0x40800000) /* ICP Control Register 0 */