cpuidle: arm_big_little: fixup for MCPM
authorNicolas Pitre <nicolas.pitre@linaro.org>
Tue, 19 Mar 2013 19:59:24 +0000 (15:59 -0400)
committerJon Medhurst <tixy@linaro.org>
Mon, 1 Jul 2013 10:05:13 +0000 (11:05 +0100)
The low-level layer is now called "mcpm".

drivers/cpuidle/arm_big_little.c

index b97ebe018b6ed262a54aa7eaf51c5e82b686dfc9..a430800d4a74c8c5b759cd34fb5e272d8cf8f8a3 100644 (file)
@@ -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);