diff options
author | Kishore Kadiyala <kishore.kadiyala@ti.com> | 2011-02-28 10:18:05 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-03-01 16:13:27 -0500 |
commit | 0005ae73cfe44ee42d0be12a12cc82bf982f518e (patch) | |
tree | df8530e43e8194b8d07a9198bbcfadba41b0274b /arch/arm/mach-omap2/board-4430sdp.c | |
parent | 4621d5f8cb435b1ba74efe6e0a7125febb40186b (diff) |
OMAP: hsmmc: Rename the device and driver
Modifying the device & driver name from "mmci-omap-hs" to
"omap_hsmmc".
Signed-off-by: Kishore Kadiyala <kishore.kadiyala@ti.com>
Acked-by: Benoit Cousson<b-cousson@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-4430sdp.c')
-rw-r--r-- | arch/arm/mach-omap2/board-4430sdp.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch/arm/mach-omap2/board-4430sdp.c index 1a943be822c3..f914099b225a 100644 --- a/arch/arm/mach-omap2/board-4430sdp.c +++ b/arch/arm/mach-omap2/board-4430sdp.c | |||
@@ -349,11 +349,6 @@ static struct twl4030_usb_data omap4_usbphy_data = { | |||
349 | 349 | ||
350 | static struct omap2_hsmmc_info mmc[] = { | 350 | static struct omap2_hsmmc_info mmc[] = { |
351 | { | 351 | { |
352 | .mmc = 1, | ||
353 | .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA, | ||
354 | .gpio_wp = -EINVAL, | ||
355 | }, | ||
356 | { | ||
357 | .mmc = 2, | 352 | .mmc = 2, |
358 | .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA, | 353 | .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA, |
359 | .gpio_cd = -EINVAL, | 354 | .gpio_cd = -EINVAL, |
@@ -361,19 +356,24 @@ static struct omap2_hsmmc_info mmc[] = { | |||
361 | .nonremovable = true, | 356 | .nonremovable = true, |
362 | .ocr_mask = MMC_VDD_29_30, | 357 | .ocr_mask = MMC_VDD_29_30, |
363 | }, | 358 | }, |
359 | { | ||
360 | .mmc = 1, | ||
361 | .caps = MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA, | ||
362 | .gpio_wp = -EINVAL, | ||
363 | }, | ||
364 | {} /* Terminator */ | 364 | {} /* Terminator */ |
365 | }; | 365 | }; |
366 | 366 | ||
367 | static struct regulator_consumer_supply sdp4430_vaux_supply[] = { | 367 | static struct regulator_consumer_supply sdp4430_vaux_supply[] = { |
368 | { | 368 | { |
369 | .supply = "vmmc", | 369 | .supply = "vmmc", |
370 | .dev_name = "mmci-omap-hs.1", | 370 | .dev_name = "omap_hsmmc.1", |
371 | }, | 371 | }, |
372 | }; | 372 | }; |
373 | static struct regulator_consumer_supply sdp4430_vmmc_supply[] = { | 373 | static struct regulator_consumer_supply sdp4430_vmmc_supply[] = { |
374 | { | 374 | { |
375 | .supply = "vmmc", | 375 | .supply = "vmmc", |
376 | .dev_name = "mmci-omap-hs.0", | 376 | .dev_name = "omap_hsmmc.0", |
377 | }, | 377 | }, |
378 | }; | 378 | }; |
379 | 379 | ||