diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-04-02 20:02:47 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-04-03 02:44:33 -0400 |
commit | fa8589fe3bfafadd80677c8eabae97dc5dab22c0 (patch) | |
tree | 3189a2ac3d57b59715fa41006a802c81e5dd6191 | |
parent | 76962caa4b691ad09556903602143fc8b16802ae (diff) |
ARM: OMAP: Use explicit broadcast control function
Replace the clockevents_notify() call with an explicit function call.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Tony Lindgren <tony@atomide.com>
Link: http://lkml.kernel.org/r/2124877.3nbWGILHCV@vostro.rjw.lan
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/arm/mach-omap2/cpuidle44xx.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/cpuidle44xx.c b/arch/arm/mach-omap2/cpuidle44xx.c index 01e398a868bc..9284dc547263 100644 --- a/arch/arm/mach-omap2/cpuidle44xx.c +++ b/arch/arm/mach-omap2/cpuidle44xx.c | |||
@@ -14,7 +14,7 @@ | |||
14 | #include <linux/cpuidle.h> | 14 | #include <linux/cpuidle.h> |
15 | #include <linux/cpu_pm.h> | 15 | #include <linux/cpu_pm.h> |
16 | #include <linux/export.h> | 16 | #include <linux/export.h> |
17 | #include <linux/clockchips.h> | 17 | #include <linux/tick.h> |
18 | 18 | ||
19 | #include <asm/cpuidle.h> | 19 | #include <asm/cpuidle.h> |
20 | #include <asm/proc-fns.h> | 20 | #include <asm/proc-fns.h> |
@@ -184,8 +184,7 @@ fail: | |||
184 | */ | 184 | */ |
185 | static void omap_setup_broadcast_timer(void *arg) | 185 | static void omap_setup_broadcast_timer(void *arg) |
186 | { | 186 | { |
187 | int cpu = smp_processor_id(); | 187 | tick_broadcast_enable(); |
188 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ON, &cpu); | ||
189 | } | 188 | } |
190 | 189 | ||
191 | static struct cpuidle_driver omap4_idle_driver = { | 190 | static struct cpuidle_driver omap4_idle_driver = { |