* Steve Sakoman <[EMAIL PROTECTED]> [081205 16:31]:
> I attempted an Overo build this afternoon with
> fb3d15c023ff08c879155db630895f38526b95f6.
> 
> I set bootargs for rootfs on mmc.  The boot progresses normally and
> then hangs waiting for the rootfs to mount.
> 
> Where I previously got:
> 
>   Waiting for root device /dev/mmcblk0p2...
>   mmc0: host does not support reading read-only switch. assuming write-enable.
>   mmc0: new SD card at address ee21
>   mmcblk0: mmc0:ee21 SU02G 1.89 GiB
>    mmcblk0: p1 p2
> 
> I now get:
> 
>   Waiting for root device /dev/mmcblk0p2...
> 
> Has anyone else seen mmc issues with rc7?

I think I did it again while cleaning up.. Can you try this patch?
The name was conflicting with the other MMC omap driver.

Tony
diff --git a/arch/arm/plat-omap/devices.c b/arch/arm/plat-omap/devices.c
index 25c6d10..70108f8 100644
--- a/arch/arm/plat-omap/devices.c
+++ b/arch/arm/plat-omap/devices.c
@@ -206,7 +206,7 @@ int __init omap_mmc_add(int id, unsigned long base, unsigned long size,
 	struct resource res[OMAP_MMC_NR_RES];
 	int ret;
 
-	pdev = platform_device_alloc("mmci-omap", id);
+	pdev = platform_device_alloc("mmci-omap-hs", id);
 	if (!pdev)
 		return -ENOMEM;
 

Reply via email to