diff options
author | Aisheng.Dong <b29396@freescale.com> | 2010-06-01 19:49:50 +0800 |
---|---|---|
committer | Aisheng.Dong <b29396@freescale.com> | 2010-06-08 13:36:33 +0800 |
commit | 3ee9d15fd8d836cdc6469c042ccc2c2c36875144 (patch) | |
tree | f4e6dbc127291c3b5ae0dcf24ba846c66acd71ea /cpu | |
parent | ddb3f2723eaa7ad9e6c7e3cb57c3cdcc6c635f95 (diff) | |
download | u-boot-imx-3ee9d15fd8d836cdc6469c042ccc2c2c36875144.zip u-boot-imx-3ee9d15fd8d836cdc6469c042ccc2c2c36875144.tar.gz u-boot-imx-3ee9d15fd8d836cdc6469c042ccc2c2c36875144.tar.bz2 |
ENGR00123484 mx28:support saving environment into sd1
Original uboot did not support sd1 and can only save environment
into sd0 even actually you're booting from sd1.
This patch adds the capability of saving environment into sd1
when you're booting from sd1.
Signed-off-by: Aisheng.Dong <b29396@freescale.com>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/arm926ejs/mx28/generic.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/cpu/arm926ejs/mx28/generic.c b/cpu/arm926ejs/mx28/generic.c index 82929d5..eeeadfe 100644 --- a/cpu/arm926ejs/mx28/generic.c +++ b/cpu/arm926ejs/mx28/generic.c @@ -142,21 +142,6 @@ int print_cpuinfo(void) #endif /* - * Initializes on-chip MMC controllers. - */ -#if defined(CONFIG_IMX_SSP_MMC) -int imx_ssp_mmc_initialize(bd_t *bis); -#endif -int cpu_mmc_init(bd_t *bis) -{ - int rc = ENODEV; -#if defined(CONFIG_IMX_SSP_MMC) - rc = imx_ssp_mmc_initialize(bis); -#endif - return rc; -} - -/* * Initializes on-chip ethernet controllers. */ int cpu_eth_init(bd_t *bis) |