From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dirk Behme Date: Mon, 08 Aug 2011 16:58:17 +0200 Subject: [U-Boot] [PATCH] OMAP3: Fix gpio.h usage In-Reply-To: <1312569092-21338-1-git-send-email-dirk.behme@gmail.com> References: <1312569092-21338-1-git-send-email-dirk.behme@gmail.com> Message-ID: <4E3FF989.2030103@googlemail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 05.08.2011 20:31, Dirk Behme wrote: > 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 Please ignore this patch and use http://patchwork.ozlabs.org/patch/107678/ instead. Thanks Dirk > --- > "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" >