aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/devices.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-omap2/devices.c')
-rw-r--r--arch/arm/mach-omap2/devices.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c
index ce03fa75077..8075f5868c3 100644
--- a/arch/arm/mach-omap2/devices.c
+++ b/arch/arm/mach-omap2/devices.c
@@ -348,11 +348,12 @@ static void __init omap_hsmmc_reset(void)
348 } 348 }
349 349
350 dummy_pdev.id = i; 350 dummy_pdev.id = i;
351 iclk = clk_get(dev, "mmchs_ick"); 351 dev_set_name(&dummy_pdev.dev, "mmci-omap-hs.%d", i);
352 iclk = clk_get(dev, "ick");
352 if (iclk && clk_enable(iclk)) 353 if (iclk && clk_enable(iclk))
353 iclk = NULL; 354 iclk = NULL;
354 355
355 fclk = clk_get(dev, "mmchs_fck"); 356 fclk = clk_get(dev, "fck");
356 if (fclk && clk_enable(fclk)) 357 if (fclk && clk_enable(fclk))
357 fclk = NULL; 358 fclk = NULL;
358 359