Commit 47c8c91b authored by Shan Wei's avatar Shan Wei Committed by John Stultz

clocksource: arm_generic: use this_cpu_ptr per-cpu helper

Utilize this_cpu_ptr() instead of per_cpu_ptr(...,smp_processor_id())
Signed-off-by: default avatarShan Wei <davidshan@tencent.com>
Reviewed-by: default avatarChristoph Lameter <cl@linux.com>
Signed-off-by: default avatarJohn Stultz <john.stultz@linaro.org>
parent 980097b3
...@@ -224,7 +224,7 @@ int __init arm_generic_timer_init(void) ...@@ -224,7 +224,7 @@ int __init arm_generic_timer_init(void)
lpj_fine = DIV_ROUND_CLOSEST(arch_timer_rate, HZ); lpj_fine = DIV_ROUND_CLOSEST(arch_timer_rate, HZ);
/* Immediately configure the timer on the boot CPU */ /* Immediately configure the timer on the boot CPU */
arch_timer_setup(per_cpu_ptr(&arch_timer_evt, smp_processor_id())); arch_timer_setup(this_cpu_ptr(&arch_timer_evt));
register_cpu_notifier(&arch_timer_cpu_nb); register_cpu_notifier(&arch_timer_cpu_nb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment