aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/pm.c
diff options
context:
space:
mode:
authorSantosh Shilimkar <santosh.shilimkar@ti.com>2013-02-08 10:11:44 -0500
committerPaul Walmsley <paul@pwsan.com>2013-02-08 11:43:04 -0500
commitcd19010c03cc9cce2366d5065720a3ab546833dd (patch)
tree1a7279a94c686e75403c9c8166d2c629bcc413cd /arch/arm/mach-omap2/pm.c
parent6048009818047297c510e300c6e8e6f623d4eac9 (diff)
ARM: OMAP2+: PM: Fix the dt return condition in pm_late_init()
Commit 1416408d {ARM: OMAP2+: PM: share some suspend-related functions across OMAP2, 3, 4} moved suspend code to common place but now with that change, for DT build on OMAP4, suspend hooks are not getting registered which results in no suspend support. The DT return condition is limited to PMIC and smartreflex initialization and hence restrict it so that suspend ops gets registered. Cc: Paul Walmsley <paul@pwsan.com> Cc: Kevin Hilman <khilman@deeprootsystems.com> Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com> Reviewed-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/mach-omap2/pm.c')
-rw-r--r--arch/arm/mach-omap2/pm.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c
index f4b3143a8b1d..1ec429964b7f 100644
--- a/arch/arm/mach-omap2/pm.c
+++ b/arch/arm/mach-omap2/pm.c
@@ -345,19 +345,19 @@ int __init omap2_common_pm_late_init(void)
345 * a completely different mechanism. 345 * a completely different mechanism.
346 * Disable this part if a DT blob is available. 346 * Disable this part if a DT blob is available.
347 */ 347 */
348 if (of_have_populated_dt()) 348 if (!of_have_populated_dt()) {
349 return 0;
350 349
351 /* Init the voltage layer */ 350 /* Init the voltage layer */
352 omap_pmic_late_init(); 351 omap_pmic_late_init();
353 omap_voltage_late_init(); 352 omap_voltage_late_init();
354 353
355 /* Initialize the voltages */ 354 /* Initialize the voltages */
356 omap3_init_voltages(); 355 omap3_init_voltages();
357 omap4_init_voltages(); 356 omap4_init_voltages();
358 357
359 /* Smartreflex device init */ 358 /* Smartreflex device init */
360 omap_devinit_smartreflex(); 359 omap_devinit_smartreflex();
360 }
361 361
362#ifdef CONFIG_SUSPEND 362#ifdef CONFIG_SUSPEND
363 suspend_set_ops(&omap_pm_ops); 363 suspend_set_ops(&omap_pm_ops);