diff options
author | Tom Rini <trini@ti.com> | 2011-09-03 21:51:25 -0400 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-04 11:36:17 +0200 |
commit | 86c5c54409cfcf20ae7ae75f567fa9a4c4a2e87e (patch) | |
tree | 3203386d20c736b5ca93dd0f256fc1b321a82d7f /board/pandora | |
parent | cfc4384c840ae76ee4a2f9080daa8bd3b9013155 (diff) | |
download | u-boot-imx-86c5c54409cfcf20ae7ae75f567fa9a4c4a2e87e.zip u-boot-imx-86c5c54409cfcf20ae7ae75f567fa9a4c4a2e87e.tar.gz u-boot-imx-86c5c54409cfcf20ae7ae75f567fa9a4c4a2e87e.tar.bz2 |
OMAP3: pandora: Use generic MMC driver
Switch from the legacy omap3 mmc driver to the new generic omap hsmmc
driver. This patch is based on the work done for Beagle, etc.
Signed-off-by: Tom Rini <trini@ti.com>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'board/pandora')
-rw-r--r-- | board/pandora/pandora.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/board/pandora/pandora.c b/board/pandora/pandora.c index 0df4570..58a676d 100644 --- a/board/pandora/pandora.c +++ b/board/pandora/pandora.c @@ -32,6 +32,7 @@ #include <common.h> #include <twl4030.h> #include <asm/io.h> +#include <asm/arch/mmc_host_def.h> #include <asm/arch/mux.h> #include <asm/arch/gpio.h> #include <asm/arch/sys_proto.h> @@ -103,3 +104,11 @@ void set_muxconf_regs(void) { MUX_PANDORA(); } + +#ifdef CONFIG_GENERIC_MMC +int board_mmc_init(bd_t *bis) +{ + omap_mmc_init(0); + return 0; +} +#endif |