diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2011-08-28 06:30:40 +0200 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-11-15 22:24:50 +0100 |
commit | 5d877f42126027fbb7d5e3d9491ffd7a93627359 (patch) | |
tree | d5bd13824408bd08311f6e1555ac8af3912bbf8a /board/vpac270 | |
parent | 237ce0fe97f9d4206011fcb9f509e50fef4ef2f0 (diff) | |
download | u-boot-imx-5d877f42126027fbb7d5e3d9491ffd7a93627359.zip u-boot-imx-5d877f42126027fbb7d5e3d9491ffd7a93627359.tar.gz u-boot-imx-5d877f42126027fbb7d5e3d9491ffd7a93627359.tar.bz2 |
PXA: vpac270: Enable the new generic MMC driver
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Diffstat (limited to 'board/vpac270')
-rw-r--r-- | board/vpac270/vpac270.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/board/vpac270/vpac270.c b/board/vpac270/vpac270.c index 43bbdff..cf8e7b6 100644 --- a/board/vpac270/vpac270.c +++ b/board/vpac270/vpac270.c @@ -21,6 +21,7 @@ #include <common.h> #include <asm/arch/hardware.h> +#include <asm/arch/regs-mmc.h> #include <netdev.h> #include <serial.h> #include <asm/io.h> @@ -72,6 +73,14 @@ void dram_init_banksize(void) #endif } +#ifdef CONFIG_CMD_MMC +int board_mmc_init(bd_t *bis) +{ + pxa_mmc_register(0); + return 0; +} +#endif + #ifdef CONFIG_CMD_USB int usb_board_init(void) { |