diff options
Diffstat (limited to 'arch/arm/mach-omap2/pm34xx.c')
-rw-r--r-- | arch/arm/mach-omap2/pm34xx.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c index 5bf344a3fcf5..288bee32e2b2 100644 --- a/arch/arm/mach-omap2/pm34xx.c +++ b/arch/arm/mach-omap2/pm34xx.c | |||
@@ -68,6 +68,9 @@ static inline bool is_suspending(void) | |||
68 | #define OMAP343X_TABLE_VALUE_OFFSET 0xc0 | 68 | #define OMAP343X_TABLE_VALUE_OFFSET 0xc0 |
69 | #define OMAP343X_CONTROL_REG_VALUE_OFFSET 0xc8 | 69 | #define OMAP343X_CONTROL_REG_VALUE_OFFSET 0xc8 |
70 | 70 | ||
71 | /* pm34xx errata defined in pm.h */ | ||
72 | u16 pm34xx_errata; | ||
73 | |||
71 | struct power_state { | 74 | struct power_state { |
72 | struct powerdomain *pwrdm; | 75 | struct powerdomain *pwrdm; |
73 | u32 next_state; | 76 | u32 next_state; |
@@ -991,6 +994,10 @@ void omap_push_sram_idle(void) | |||
991 | save_secure_ram_context_sz); | 994 | save_secure_ram_context_sz); |
992 | } | 995 | } |
993 | 996 | ||
997 | static void __init pm_errata_configure(void) | ||
998 | { | ||
999 | } | ||
1000 | |||
994 | static int __init omap3_pm_init(void) | 1001 | static int __init omap3_pm_init(void) |
995 | { | 1002 | { |
996 | struct power_state *pwrst, *tmp; | 1003 | struct power_state *pwrst, *tmp; |
@@ -1000,6 +1007,8 @@ static int __init omap3_pm_init(void) | |||
1000 | if (!cpu_is_omap34xx()) | 1007 | if (!cpu_is_omap34xx()) |
1001 | return -ENODEV; | 1008 | return -ENODEV; |
1002 | 1009 | ||
1010 | pm_errata_configure(); | ||
1011 | |||
1003 | printk(KERN_ERR "Power Management for TI OMAP3.\n"); | 1012 | printk(KERN_ERR "Power Management for TI OMAP3.\n"); |
1004 | 1013 | ||
1005 | /* XXX prcm_setup_regs needs to be before enabling hw | 1014 | /* XXX prcm_setup_regs needs to be before enabling hw |