aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/leds/trigger
diff options
context:
space:
mode:
authorChristoph Lameter <cl@linux.com>2014-05-05 09:48:38 -0700
committerBryan Wu <cooloney@gmail.com>2014-05-08 14:28:08 +0800
commit24c9301ffd21356bcd865a5155a501e5059c4c6f (patch)
treef9439993698f72afe96b56e06cb97cd5b13a95e6 /drivers/leds/trigger
parentleds: lp55xx: add DT bindings for LP55231 (diff)
downloadlinux-dev-24c9301ffd21356bcd865a5155a501e5059c4c6f.tar.xz
linux-dev-24c9301ffd21356bcd865a5155a501e5059c4c6f.zip
drivers/leds: Replace __get_cpu_var use through this_cpu_ptr
Use this_cpu_ptr for the address calculation instead of __get_cpu_var. Signed-off-by: Christoph Lameter <cl@linux.com> Signed-off-by: Bryan Wu <cooloney@gmail.com>
Diffstat (limited to 'drivers/leds/trigger')
-rw-r--r--drivers/leds/trigger/ledtrig-cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/trigger/ledtrig-cpu.c b/drivers/leds/trigger/ledtrig-cpu.c
index 1c3ee9fcaf34..aec0f02b6b3e 100644
--- a/drivers/leds/trigger/ledtrig-cpu.c
+++ b/drivers/leds/trigger/ledtrig-cpu.c
@@ -47,7 +47,7 @@ static DEFINE_PER_CPU(struct led_trigger_cpu, cpu_trig);
*/
void ledtrig_cpu(enum cpu_led_event ledevt)
{
- struct led_trigger_cpu *trig = &__get_cpu_var(cpu_trig);
+ struct led_trigger_cpu *trig = this_cpu_ptr(&cpu_trig);
/* Locate the correct CPU LED */
switch (ledevt) {