[U-Boot] [PATCH 1/2] nitrogen6x: Pass the correct CPU revision to the kernel
Fabio Estevam
festevam at gmail.com
Fri Mar 15 22:06:33 CET 2013
From: Fabio Estevam <fabio.estevam at freescale.com>
As nitrogen6x boards support different i.MX6 flavors (quad, dual-lite and solo)
the correct CPU revision needs to passed to the kernel, so call get_cpu_rev()
instead of hardcoding it.
Freescale 3.0.35 kernel assumes that the CPU revision is passed passed from the
bootloader.
Signed-off-by: Fabio Estevam <fabio.estevam at freescale.com>
---
board/boundary/nitrogen6x/nitrogen6x.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/boundary/nitrogen6x/nitrogen6x.c b/board/boundary/nitrogen6x/nitrogen6x.c
index 229c237..fec0e3a 100644
--- a/board/boundary/nitrogen6x/nitrogen6x.c
+++ b/board/boundary/nitrogen6x/nitrogen6x.c
@@ -330,7 +330,7 @@ int board_mmc_init(bd_t *bis)
u32 get_board_rev(void)
{
- return 0x63000;
+ return get_cpu_rev();
}
#ifdef CONFIG_MXC_SPI
--
1.7.9.5
More information about the U-Boot
mailing list