diff options
author | Santosh Shilimkar <santosh.shilimkar@ti.com> | 2011-02-11 20:42:11 +0530 |
---|---|---|
committer | Kevin Hilman <khilman@ti.com> | 2011-03-09 16:15:50 -0800 |
commit | 261bfb286eab32aa6129f48d2b2d24f20825757b (patch) | |
tree | 45e4f23bda9e8f62bb516c82e12b49745e0bf29b /arch/arm/mach-omap2 | |
parent | 51d070afd6f927752c76a0cc537c73737578bb93 (diff) | |
download | op-kernel-dev-261bfb286eab32aa6129f48d2b2d24f20825757b.zip op-kernel-dev-261bfb286eab32aa6129f48d2b2d24f20825757b.tar.gz |
omap3: pm: Use exported set_cr() instead of a custom one.
Remove the custom restore_control_register() and use the exported
set_cr() instead to set the system control register(SCTRL) value.
No functional change.
Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Cc: Kevin Hilman <khilman@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r-- | arch/arm/mach-omap2/pm34xx.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c index b9427c7..1883a46 100644 --- a/arch/arm/mach-omap2/pm34xx.c +++ b/arch/arm/mach-omap2/pm34xx.c @@ -311,11 +311,6 @@ static irqreturn_t prcm_interrupt_handler (int irq, void *dev_id) return IRQ_HANDLED; } -static void restore_control_register(u32 val) -{ - __asm__ __volatile__ ("mcr p15, 0, %0, c1, c0, 0" : : "r" (val)); -} - /* Function to restore the table entry that was modified for enabling MMU */ static void restore_table_entry(void) { @@ -337,7 +332,7 @@ static void restore_table_entry(void) control_reg_value = __raw_readl(scratchpad_address + OMAP343X_CONTROL_REG_VALUE_OFFSET); /* This will enable caches and prediction */ - restore_control_register(control_reg_value); + set_cr(control_reg_value); } void omap_sram_idle(void) |