diff options
author | Marek Belisko <marek.belisko@open-nandra.com> | 2010-12-06 13:23:48 (GMT) |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-12-21 01:53:04 (GMT) |
commit | 05f185c774992f1d9edb646a3ecfdabdc8e358f3 (patch) | |
tree | 593d00988f0730e1f7d67b41e0c7b180ec145b0e /arch/arm/mach-omap1/pm_bus.c | |
parent | 16c8a3b0c193dca0826dde77423ec4f7a81ed9f6 (diff) | |
download | linux-05f185c774992f1d9edb646a3ecfdabdc8e358f3.tar.xz |
omap1: pm_bus: Fix compilation warning
Fix following compilation warning:
arch/arm/mach-omap1/pm_bus.c: In function 'omap1_pm_runtime_resume':
arch/arm/mach-omap1/pm_bus.c:51: warning: unused variable 'ret'
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Acked-by: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1/pm_bus.c')
-rw-r--r-- | arch/arm/mach-omap1/pm_bus.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/pm_bus.c b/arch/arm/mach-omap1/pm_bus.c index 3266447..6588c22 100644 --- a/arch/arm/mach-omap1/pm_bus.c +++ b/arch/arm/mach-omap1/pm_bus.c @@ -48,7 +48,6 @@ static int omap1_pm_runtime_suspend(struct device *dev) static int omap1_pm_runtime_resume(struct device *dev) { - int ret = 0; struct clk *iclk, *fclk; dev_dbg(dev, "%s\n", __func__); |