From patchwork Fri Aug 5 18:31:32 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dirk Behme X-Patchwork-Id: 108710 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 9A5E4B6F75 for ; Sat, 6 Aug 2011 04:32:26 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3CD19280B5; Fri, 5 Aug 2011 20:32:23 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bjCo0L540aDx; Fri, 5 Aug 2011 20:32:22 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C6A4A280AD; Fri, 5 Aug 2011 20:32:21 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id F3706280AD for ; Fri, 5 Aug 2011 20:32:19 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kYt1y+c4dYPh for ; Fri, 5 Aug 2011 20:32:16 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-ew0-f44.google.com (mail-ew0-f44.google.com [209.85.215.44]) by theia.denx.de (Postfix) with ESMTPS id 6D4AC280AA for ; Fri, 5 Aug 2011 20:32:14 +0200 (CEST) Received: by ewy19 with SMTP id 19so306832ewy.3 for ; Fri, 05 Aug 2011 11:32:14 -0700 (PDT) Received: by 10.213.16.208 with SMTP id p16mr633998eba.130.1312569134271; Fri, 05 Aug 2011 11:32:14 -0700 (PDT) Received: from linux.local ([46.115.9.124]) by mx.google.com with ESMTPS id q22sm1339546eea.52.2011.08.05.11.32.11 (version=SSLv3 cipher=OTHER); Fri, 05 Aug 2011 11:32:13 -0700 (PDT) From: Dirk Behme To: u-boot@lists.denx.de Date: Fri, 5 Aug 2011 20:31:32 +0200 Message-Id: <1312569092-21338-1-git-send-email-dirk.behme@gmail.com> X-Mailer: git-send-email 1.7.3.2 Subject: [U-Boot] [PATCH] OMAP3: Fix gpio.h usage X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de From: Dirk Behme The patch "omap: reuse omap3 gpio support in omap4" moves arch/arm/include/asm/arch-omap3/gpio.h to arch/arm/include/asm/omap_gpio.h but misses to touch all users of arch-omap3/gpio.h. This results in various build failures like : error: asm/arch/gpio.h: No such file or directory Fix this by correcting the now wrong includes. Signed-off-by: Dirk Behme CC: Aneesh V CC: Sandeep Paulraj --- "omap: reuse omap3 gpio support in omap4" is commit http://git.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=commit;h=25223a68e5f7cc32eebb44313efe8ff15a0f5fd6 board/cm_t35/leds.c | 2 +- board/comelit/dig297/dig297.c | 2 +- board/isee/igep0020/igep0020.c | 2 +- board/logicpd/zoom2/debug_board.c | 2 +- board/logicpd/zoom2/led.c | 2 +- board/logicpd/zoom2/zoom2.c | 2 +- board/overo/overo.c | 2 +- board/ti/beagle/beagle.c | 2 +- board/ti/beagle/led.c | 2 +- board/ti/evm/evm.c | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) Index: u-boot.git/board/cm_t35/leds.c =================================================================== --- u-boot.git.orig/board/cm_t35/leds.c +++ u-boot.git/board/cm_t35/leds.c @@ -20,7 +20,7 @@ */ #include #include -#include +#include static unsigned int leds[] = { GREEN_LED_GPIO }; Index: u-boot.git/board/comelit/dig297/dig297.c =================================================================== --- u-boot.git.orig/board/comelit/dig297/dig297.c +++ u-boot.git/board/comelit/dig297/dig297.c @@ -41,7 +41,7 @@ #include #include #include -#include +#include #include #include "dig297.h" Index: u-boot.git/board/isee/igep0020/igep0020.c =================================================================== --- u-boot.git.orig/board/isee/igep0020/igep0020.c +++ u-boot.git/board/isee/igep0020/igep0020.c @@ -24,7 +24,7 @@ #include #include #include -#include +#include #include #include #include Index: u-boot.git/board/logicpd/zoom2/debug_board.c =================================================================== --- u-boot.git.orig/board/logicpd/zoom2/debug_board.c +++ u-boot.git/board/logicpd/zoom2/debug_board.c @@ -22,7 +22,7 @@ #include #include #include -#include +#include #define DEBUG_BOARD_CONNECTED 1 #define DEBUG_BOARD_NOT_CONNECTED 0 Index: u-boot.git/board/logicpd/zoom2/led.c =================================================================== --- u-boot.git.orig/board/logicpd/zoom2/led.c +++ u-boot.git/board/logicpd/zoom2/led.c @@ -22,7 +22,7 @@ #include #include #include -#include +#include static unsigned int saved_state[2] = {STATUS_LED_OFF, STATUS_LED_OFF}; Index: u-boot.git/board/logicpd/zoom2/zoom2.c =================================================================== --- u-boot.git.orig/board/logicpd/zoom2/zoom2.c +++ u-boot.git/board/logicpd/zoom2/zoom2.c @@ -35,7 +35,7 @@ #endif #include #include -#include +#include #include #include #include Index: u-boot.git/board/overo/overo.c =================================================================== --- u-boot.git.orig/board/overo/overo.c +++ u-boot.git/board/overo/overo.c @@ -36,7 +36,7 @@ #include #include #include -#include +#include #include #include "overo.h" Index: u-boot.git/board/ti/beagle/beagle.c =================================================================== --- u-boot.git.orig/board/ti/beagle/beagle.c +++ u-boot.git/board/ti/beagle/beagle.c @@ -38,7 +38,7 @@ #include #include #include -#include +#include #include #ifdef CONFIG_USB_EHCI #include Index: u-boot.git/board/ti/beagle/led.c =================================================================== --- u-boot.git.orig/board/ti/beagle/led.c +++ u-boot.git/board/ti/beagle/led.c @@ -22,7 +22,7 @@ #include #include #include -#include +#include static unsigned int saved_state[2] = {STATUS_LED_OFF, STATUS_LED_OFF}; Index: u-boot.git/board/ti/evm/evm.c =================================================================== --- u-boot.git.orig/board/ti/evm/evm.c +++ u-boot.git/board/ti/evm/evm.c @@ -33,7 +33,7 @@ #include #include #include -#include +#include #include #include #include "evm.h"