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 | |
| parent | bfae4f8ffa8249c7cdd1483320cf1adc0ec954ff (diff) | |
| download | olio-linux-3.10-9f8b6949d78f1306eef0edc14bc1fbcaf3e58ad0.tar.xz olio-linux-3.10-9f8b6949d78f1306eef0edc14bc1fbcaf3e58ad0.zip  | |
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')
| -rw-r--r-- | arch/arm/mach-omap2/gpio.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-omap2/serial.c | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/gpio.c b/arch/arm/mach-omap2/gpio.c index 76abdcb6e0b..652ccc57419 100644 --- a/arch/arm/mach-omap2/gpio.c +++ b/arch/arm/mach-omap2/gpio.c @@ -119,7 +119,7 @@ static int omap2_gpio_dev_init(struct omap_hwmod *oh, void *unused)  		return PTR_ERR(pdev);  	} -	omap_device_disable_idle_on_suspend(od); +	omap_device_disable_idle_on_suspend(pdev);  	gpio_bank_count++;  	return 0; 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;  |