diff options
author | Benoit Cousson <b-cousson@ti.com> | 2011-08-16 14:01:23 +0200 |
---|---|---|
committer | Kevin Hilman <khilman@ti.com> | 2011-10-04 09:52:22 -0700 |
commit | b1621fc80123e4f113c3dc1bc6dbad53ebd0c888 (patch) | |
tree | aab2b79e84c1310777fabd4b91c10eed89a4c0c7 /arch/arm/mach-omap2/board-omap3beagle.c | |
parent | 1f8a7d5207a2a343af7c3b18fcc65dc6aa1fb068 (diff) | |
download | linux-b1621fc80123e4f113c3dc1bc6dbad53ebd0c888.tar.gz linux-b1621fc80123e4f113c3dc1bc6dbad53ebd0c888.tar.bz2 linux-b1621fc80123e4f113c3dc1bc6dbad53ebd0c888.zip |
ARM: OMAP3: beagle-board: Use the omap_hwmod_name_get_dev API
Replace the multiple omap2_get_XXX_device APIs with the new
omap_hwmod_name_get_dev that uses the hwmod name to get the proper
device.
Signed-off-by: Benoit Cousson <b-cousson@ti.com>
Cc: Nishanth Menon <nm@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3beagle.c')
-rw-r--r-- | arch/arm/mach-omap2/board-omap3beagle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index e085371eb494..4a5d75f11610 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c @@ -486,8 +486,8 @@ static void __init beagle_opp_init(void) if (cpu_is_omap3630()) { struct device *mpu_dev, *iva_dev; - mpu_dev = omap2_get_mpuss_device(); - iva_dev = omap2_get_iva_device(); + mpu_dev = omap_device_get_by_hwmod_name("mpu"); + iva_dev = omap_device_get_by_hwmod_name("iva"); if (!mpu_dev || !iva_dev) { pr_err("%s: Aiee.. no mpu/dsp devices? %p %p\n", |