summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-01-09 11:02:50 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-01-10 20:41:42 +0100
commit46dae550cdccfee407f8ced183f9102296cb79b7 (patch)
tree24cd589128726ad9ac44bdafd8460fe3d80ea8fb /arch
parentdbdd533232c463da503f6b85ade060153f1b17d6 (diff)
downloadbarebox-46dae550cdccfee407f8ced183f9102296cb79b7.tar.gz
barebox-46dae550cdccfee407f8ced183f9102296cb79b7.tar.xz
ARM am33xx: the hsmmc is a omap4 type mmc controller
The am33xx hsmmc controller is actually a omap4 type controller which means that it has a 0x100 offset in the registers. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-omap/include/mach/am33xx-devices.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap/include/mach/am33xx-devices.h b/arch/arm/mach-omap/include/mach/am33xx-devices.h
index 4c83b2844c..c194303a58 100644
--- a/arch/arm/mach-omap/include/mach/am33xx-devices.h
+++ b/arch/arm/mach-omap/include/mach/am33xx-devices.h
@@ -26,7 +26,7 @@ static inline struct device_d *am33xx_add_uart2(void)
static inline struct device_d *am33xx_add_mmc0(struct omap_hsmmc_platform_data *pdata)
{
- return add_generic_device("omap3-hsmmc", 0, NULL,
+ return add_generic_device("omap4-hsmmc", 0, NULL,
AM33XX_MMCHS0_BASE, SZ_4K, IORESOURCE_MEM, pdata);
}