diff options
author | Kevin Hilman <khilman@ti.com> | 2011-08-01 09:33:13 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@ti.com> | 2011-09-15 16:35:47 -0700 |
commit | 9f8b6949d78f1306eef0edc14bc1fbcaf3e58ad0 (patch) | |
tree | 25d24e2eeb52bfa1116322d681fd54a08d18f6c0 /arch/arm/mach-omap2/serial.c | |
parent | bfae4f8ffa8249c7cdd1483320cf1adc0ec954ff (diff) |
OMAP: omap_device: _disable_idle_on_suspend() takes platform_device pointer
Public omap_device functions need to take platform_device pointers,
conversion to omap_device pointers is done internal to the omap_device
layer.
Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/serial.c')
-rw-r--r-- | arch/arm/mach-omap2/serial.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index 53b68087813..3d1c1d393f8 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c @@ -805,7 +805,7 @@ void __init omap_serial_init_port(struct omap_board_data *bdata) WARN(IS_ERR(pdev), "Could not build omap_device for %s: %s.\n", name, oh->name); - omap_device_disable_idle_on_suspend(od); + omap_device_disable_idle_on_suspend(pdev); oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt); uart->irq = oh->mpu_irqs[0].irq; |