From: Namhyung Kim <namhyung@gmail.com> Date: Sat, 7 Aug 2010 18:10:03 +0000 (+0900) Subject: intel_idle: add missing __percpu markup X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3265eba0bed7645cacd5e2cb3614d504b5ac29e6;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git intel_idle: add missing __percpu markup intel_idle_cpuidle_devices is a percpu pointer but was missing __percpu markup. Signed-off-by: Namhyung Kim <namhyung@gmail.com> Acked-by: Tejun Heo <tj@kernel.org> Signed-off-by: Len Brown <len.brown@intel.com> --- diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index a10152bb1427..96bf38097996 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c @@ -83,7 +83,7 @@ static unsigned int mwait_substates; /* Reliable LAPIC Timer States, bit 1 for C1 etc. */ static unsigned int lapic_timer_reliable_states; -static struct cpuidle_device *intel_idle_cpuidle_devices; +static struct cpuidle_device __percpu *intel_idle_cpuidle_devices; static int intel_idle(struct cpuidle_device *dev, struct cpuidle_state *state); static struct cpuidle_state *cpuidle_state_table;