From patchwork Wed Aug 29 22:31:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rob Herring X-Patchwork-Id: 1385971 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id D0DDDDF2AB for ; Wed, 29 Aug 2012 22:36:06 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1T6qoN-0002aA-Kr; Wed, 29 Aug 2012 22:32:35 +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 1T6qno-0002V9-3S for linux-arm-kernel@lists.infradead.org; Wed, 29 Aug 2012 22:32:00 +0000 Received: by dajq27 with SMTP id q27so745115daj.36 for ; Wed, 29 Aug 2012 15:31:58 -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=3dN7UlYKnLMgA5tuyKgdDkERYYRRUrwd4+R4l16+MuI=; b=cx9zmin7PHucDdOobvcrQlFlyAeNuXIfly1f7yYiFAzvNzOfm1Dh3GhxaZizEXKJjf 2CqVVXM5lfLx4ltz3qxMGOyJLuKf7Xtm4zQhyuRc5ZVDguKKCJNgG5copYVRi3wrECQ1 ge6N5tLBiyHtq5k6FBzBHOs3WRoL1/w/TxNH/vcP3sq9xS5YnxQuXAuu43AyiuEtogrK RPRvCkURoFLUPRPd2NsG7gbO3nKQasQrqZ/RMF2880ooO9NqooQ4LJ1G2tpsY/aeaRpG wYclQV3wDjD6ihKhCuCBsZunsqj3KOT5sz3Rupv67imVAdcY9O7qplHNsvhnXeBXsWUQ ax+g== Received: by 10.66.73.133 with SMTP id l5mr5975328pav.74.1346279518546; Wed, 29 Aug 2012 15:31:58 -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.54 (version=SSLv3 cipher=OTHER); Wed, 29 Aug 2012 15:31:56 -0700 (PDT) From: Rob Herring To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 03/10] serial: atmel: add explict mach/gpio.h include Date: Wed, 29 Aug 2012 17:31:29 -0500 Message-Id: <1346279496-26286-4-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: Arnd Bergmann , Linus Walleij , Nicolas Ferre , Rob Herring , Olof Johansson , Alan Cox 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 explicit include of mach/gpio.h. Signed-off-by: Rob Herring Cc: Nicolas Ferre Cc: Alan Cox --- drivers/tty/serial/atmel_serial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/tty/serial/atmel_serial.c b/drivers/tty/serial/atmel_serial.c index 3d7e1ee..c799001 100644 --- a/drivers/tty/serial/atmel_serial.c +++ b/drivers/tty/serial/atmel_serial.c @@ -48,7 +48,7 @@ #ifdef CONFIG_ARM #include -#include +#include #endif #define PDC_BUFFER_SIZE 512