From: Stephen Boyd Date: Thu, 18 Jul 2013 23:59:30 +0000 (-0700) Subject: clocksource: arch_timer: Pass clock event to set_mode callback X-Git-Tag: firefly_0821_release~3680^2~10^2^2~5 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5a5f99e94c10d176066d02239361cd009dc06bf1;p=firefly-linux-kernel-4.4.55.git clocksource: arch_timer: Pass clock event to set_mode callback There isn't any reason why we don't pass the event here and we'll need it in the near future for memory mapped arch timers anyway. Cc: Mark Rutland Cc: Marc Zyngier Signed-off-by: Stephen Boyd Signed-off-by: Daniel Lezcano Acked-by: Mark Rutland (cherry picked from commit 1ff99ea65687d921cb71f330491ec4205c00eb9f) Signed-off-by: Mark Brown --- diff --git a/drivers/clocksource/arm_arch_timer.c b/drivers/clocksource/arm_arch_timer.c index f72dd518070b..a91e72826f12 100644 --- a/drivers/clocksource/arm_arch_timer.c +++ b/drivers/clocksource/arm_arch_timer.c @@ -140,7 +140,7 @@ static int __cpuinit arch_timer_setup(struct clock_event_device *clk) clk->cpumask = cpumask_of(smp_processor_id()); - clk->set_mode(CLOCK_EVT_MODE_SHUTDOWN, NULL); + clk->set_mode(CLOCK_EVT_MODE_SHUTDOWN, clk); clockevents_config_and_register(clk, arch_timer_rate, 0xf, 0x7fffffff);