diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-04-02 20:12:03 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-04-03 02:44:34 -0400 |
commit | 7815701c5cd7276b712d898b3cf49c55e587dbb1 (patch) | |
tree | 30fcd50b9dddbc3fac8120aa97f4a44208cb7f30 /drivers/acpi/processor_idle.c | |
parent | c79521354e71a1fbcee040ee3147cadc0f8e3c97 (diff) |
ACPI/idle: 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>
Link: http://lkml.kernel.org/r/2653377.MSAlfA939I@vostro.rjw.lan
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'drivers/acpi/processor_idle.c')
-rw-r--r-- | drivers/acpi/processor_idle.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index be5479739287..53355196c5c6 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c | |||
@@ -178,11 +178,10 @@ static void lapic_timer_state_broadcast(struct acpi_processor *pr, | |||
178 | int state = cx - pr->power.states; | 178 | int state = cx - pr->power.states; |
179 | 179 | ||
180 | if (state >= pr->power.timer_broadcast_on_state) { | 180 | if (state >= pr->power.timer_broadcast_on_state) { |
181 | unsigned long reason; | 181 | if (broadcast) |
182 | 182 | tick_broadcast_enter(); | |
183 | reason = broadcast ? CLOCK_EVT_NOTIFY_BROADCAST_ENTER : | 183 | else |
184 | CLOCK_EVT_NOTIFY_BROADCAST_EXIT; | 184 | tick_broadcast_exit(); |
185 | clockevents_notify(reason, &pr->id); | ||
186 | } | 185 | } |
187 | } | 186 | } |
188 | 187 | ||