aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Pitre <nicolas.pitre@linaro.org>2013-03-19 15:59:24 -0400
committerJon Medhurst <tixy@linaro.org>2013-05-03 13:50:05 +0100
commitc98a7217394f6a96c2681c6e6089360bb29bd6d1 (patch)
treeed8917d06fbd2d7b792091c821de60d63c6060ce
parenteb6ca80ed72ce952769cbb51cc6403c80f88ad3f (diff)
cpuidle: arm_big_little: fixup for MCPM
The low-level layer is now called "mcpm".
-rw-r--r--drivers/cpuidle/arm_big_little.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/cpuidle/arm_big_little.c b/drivers/cpuidle/arm_big_little.c
index b97ebe018b6..a430800d4a7 100644
--- a/drivers/cpuidle/arm_big_little.c
+++ b/drivers/cpuidle/arm_big_little.c
@@ -20,7 +20,7 @@
#include <linux/module.h>
#include <linux/tick.h>
#include <linux/vexpress.h>
-#include <asm/bL_entry.h>
+#include <asm/mcpm.h>
#include <asm/cpuidle.h>
#include <asm/cputype.h>
#include <asm/idmap.h>
@@ -88,8 +88,8 @@ static int notrace bl_powerdown_finisher(unsigned long arg)
unsigned int cluster = (mpidr >> 8) & 0xf;
unsigned int cpu = mpidr & 0xf;
- bL_set_entry_vector(cpu, cluster, cpu_resume);
- bL_cpu_suspend(0); /* 0 should be replaced with better value here */
+ mcpm_set_entry_vector(cpu, cluster, cpu_resume);
+ mcpm_cpu_suspend(0); /* 0 should be replaced with better value here */
return 1;
}
@@ -121,7 +121,7 @@ static int bl_enter_powerdown(struct cpuidle_device *dev,
if (ret)
BUG();
- bL_cpu_powered_up();
+ mcpm_cpu_powered_up();
clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &dev->cpu);