diff options
author | Jean-Jacques Hiblot | 2017-02-01 11:39:14 +0100 |
---|---|---|
committer | Tom Rini | 2017-03-19 22:17:14 -0400 |
commit | d5abcf94c7123167725fc22ace342f0d455093c1 (patch) | |
tree | ca1d964a4d7d798c498a3b6b409c3d68dad4a7da /board/quipos/cairo | |
parent | 02ccab1908c405fe1449457d4a0d343784a30acb (diff) |
ti: boot: Register the MMC controllers in SPL in the same way as in u-boot
To keep a consistent MMC device mapping in SPL and in u-boot, let's
register the MMC controllers the same way in u-boot and in the SPL.
In terms of boot time, it doesn't hurt to register more controllers than
needed because the MMC device is initialized only prior being accessed for
the first time.
Having the same device mapping in SPL and u-boot allows us to use the
environment in SPL whatever the MMC boot device.
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Diffstat (limited to 'board/quipos/cairo')
-rw-r--r-- | board/quipos/cairo/cairo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/quipos/cairo/cairo.c b/board/quipos/cairo/cairo.c index 6b366dc43f1..7a1a61e3869 100644 --- a/board/quipos/cairo/cairo.c +++ b/board/quipos/cairo/cairo.c @@ -62,7 +62,7 @@ void set_muxconf_regs(void) MUX_CAIRO(); } -#if defined(CONFIG_GENERIC_MMC) && !defined(CONFIG_SPL_BUILD) +#if defined(CONFIG_GENERIC_MMC) int board_mmc_init(bd_t *bis) { return omap_mmc_init(0, 0, 0, -1, -1); |