]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
clocksource: arch_timer: Pass clock event to set_mode callback
authorStephen Boyd <sboyd@codeaurora.org>
Thu, 18 Jul 2013 23:59:30 +0000 (16:59 -0700)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Wed, 31 Jul 2013 23:13:36 +0000 (01:13 +0200)
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 <mark.rutland@arm.com>
Cc: Marc Zyngier <Marc.Zyngier@arm.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Acked-by: Mark Rutland <mark.rutland@arm.com>
drivers/clocksource/arm_arch_timer.c

index aa0703847e5d4c4dd69863493ea6b620eaa5722a..7624ba574144a2abe5dde625b7595b42c14c9a85 100644 (file)
@@ -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);