diff options
| author | Jonathan Solnit <jsolnit@gmail.com> | 2012-02-24 11:30:18 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-05-15 08:31:22 +0200 | 
| commit | bbbc1ae9219ae8c8098c0af14060da5cb0d37e53 (patch) | |
| tree | 57ff74a970a4fdecd67268e9fa64aadbd41493d6 /arch/arm/cpu/armv7/omap-common/spl_mmc.c | |
| parent | 1d0f5fa11d8b21b010ca5ee0cb2a3e921345afc4 (diff) | |
| download | olio-uboot-2014.01-bbbc1ae9219ae8c8098c0af14060da5cb0d37e53.tar.xz olio-uboot-2014.01-bbbc1ae9219ae8c8098c0af14060da5cb0d37e53.zip | |
ARM:OMAP+:MMC: Add parameters to MMC init
Add parameters to the OMAP MMC initialization function so the board can
mask host capabilities and set the maximum clock frequency.  While the
OMAP supports a certain set of MMC host capabilities, individual boards
may be more restricted and the OMAP may need to be configured to match
the board.  The PRG_SDMMC1_SPEEDCTRL bit in the OMAP3 is an example.
Signed-off-by: Jonathan Solnit <jsolnit@gmail.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap-common/spl_mmc.c')
| -rw-r--r-- | arch/arm/cpu/armv7/omap-common/spl_mmc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/arm/cpu/armv7/omap-common/spl_mmc.c b/arch/arm/cpu/armv7/omap-common/spl_mmc.c index 6f5b43e55..4bd0602a9 100644 --- a/arch/arm/cpu/armv7/omap-common/spl_mmc.c +++ b/arch/arm/cpu/armv7/omap-common/spl_mmc.c @@ -39,10 +39,10 @@ int board_mmc_init(bd_t *bis)  {  	switch (omap_boot_device()) {  	case BOOT_DEVICE_MMC1: -		omap_mmc_init(0); +		omap_mmc_init(0, 0, 0);  		break;  	case BOOT_DEVICE_MMC2: -		omap_mmc_init(1); +		omap_mmc_init(1, 0, 0);  		break;  	}  	return 0; |