diff options
author | Marek Vasut <marex@denx.de> | 2012-09-30 10:09:49 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2012-10-22 02:56:25 -0500 |
commit | 831f849f79f2c9fcaa6f85f4158296d2dbc3916c (patch) | |
tree | e0afbd4d42d1c131c515b941a06f71fbbecf6862 /board/palmtc | |
parent | 13243f2eafc4292917178051fe1bb5aab2774dca (diff) | |
download | u-boot-831f849f79f2c9fcaa6f85f4158296d2dbc3916c.tar.gz |
mmc: pxa: Flip over the remaining boards to pxa_mmc_generic
Some of the boards still used the old PXA_MMC driver instead of the
new generic one. Use the new one instead so the old can be removed
and the generic MMC framework can be properly used.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Andy Fleming <afleming@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board/palmtc')
-rw-r--r-- | board/palmtc/palmtc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/board/palmtc/palmtc.c b/board/palmtc/palmtc.c index b23eec805e..590ca414aa 100644 --- a/board/palmtc/palmtc.c +++ b/board/palmtc/palmtc.c @@ -24,6 +24,7 @@ #include <serial.h> #include <asm/io.h> #include <asm/arch/pxa.h> +#include <asm/arch/regs-mmc.h> DECLARE_GLOBAL_DATA_PTR; @@ -51,6 +52,14 @@ int board_init(void) return 0; } +#ifdef CONFIG_CMD_MMC +int board_mmc_init(bd_t *bis) +{ + pxa_mmc_register(0); + return 0; +} +#endif + int dram_init(void) { pxa2xx_dram_init(); |