OMAP2: PM: fix compile error when !CONFIG_SUSPEND
authorKevin Hilman <[email protected]>
Wed, 22 Dec 2010 23:04:17 +0000 (23:04 +0000)
committerTony Lindgren <[email protected]>
Wed, 22 Dec 2010 23:13:39 +0000 (15:13 -0800)
When CONFIG_SUSPEND is not enabled, none of the system PM methods are
used, so do not compile them in.

Thanks to Charles Manning for reporting the problem and proposing
an initial patch.

Reported-by: Charles Manning <[email protected]>
Signed-off-by: Kevin Hilman <[email protected]>
Signed-off-by: Tony Lindgren <[email protected]>
arch/arm/mach-omap2/pm24xx.c

index 2844b84f8d46cdb21b85e153b659ab3329b68fcf..dac2d1d9987dfc205faca395c9e9961f64220652 100644 (file)
@@ -299,6 +299,7 @@ out:
        local_irq_enable();
 }
 
+#ifdef CONFIG_SUSPEND
 static int omap2_pm_begin(suspend_state_t state)
 {
        disable_hlt();
@@ -355,6 +356,9 @@ static struct platform_suspend_ops omap_pm_ops = {
        .end            = omap2_pm_end,
        .valid          = suspend_valid_only_mem,
 };
+#else
+static const struct platform_suspend_ops __initdata omap_pm_ops;
+#endif /* CONFIG_SUSPEND */
 
 /* XXX This function should be shareable between OMAP2xxx and OMAP3 */
 static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)