From patchwork Fri Feb 8 09:14:49 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot, PATCHv2, 4/4] OMAP3: Initialize gpmc if SPL_ONENAND_SUPPORT is enabled. Date: Thu, 07 Feb 2013 23:14:49 -0000 From: =?utf-8?q?Enric_Balletb=C3=B2_i_Serra?= X-Patchwork-Id: 219070 Message-Id: <1360314889-16955-5-git-send-email-eballetbo@gmail.com> To: u-boot@lists.denx.de, trini@ti.com, javier@dowhile0.org, elezegarcia@gmail.com Cc: Enric Balletbo i Serra From: Enric Balletbo i Serra In order to use SPL boot from OneNAND we should initialize the gpmc. Signed-off-by: Enric Balletbo i Serra --- arch/arm/cpu/armv7/omap3/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/cpu/armv7/omap3/board.c b/arch/arm/cpu/armv7/omap3/board.c index 89c587e..63063c8 100644 --- a/arch/arm/cpu/armv7/omap3/board.c +++ b/arch/arm/cpu/armv7/omap3/board.c @@ -110,7 +110,7 @@ int board_mmc_init(bd_t *bis) void spl_board_init(void) { -#ifdef CONFIG_SPL_NAND_SUPPORT +#if defined(CONFIG_SPL_NAND_SUPPORT) || defined(CONFIG_SPL_ONENAND_SUPPORT) gpmc_init(); #endif #ifdef CONFIG_SPL_I2C_SUPPORT