diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-04-02 20:32:14 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-04-03 02:44:35 -0400 |
commit | a0b4122447a3c1a467ce4e4f1bb863e1170394d5 (patch) | |
tree | 397a47ea6ddb4e0d0edbad86b241988da11a33b0 /arch/arm/mach-tegra/cpuidle-tegra30.c | |
parent | fb7f0398a98020def9429ddd7b4a8fc2d948b092 (diff) |
ARM: Tegra: Use explicit broadcast oneshot 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: Alexandre Courbot <gnurou@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephen Warren <swarren@wwwdotorg.org>
Cc: Thierry Reding <thierry.reding@gmail.com>
Link: http://lkml.kernel.org/r/2131111.rjxRLX1eZB@vostro.rjw.lan
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/arm/mach-tegra/cpuidle-tegra30.c')
-rw-r--r-- | arch/arm/mach-tegra/cpuidle-tegra30.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/mach-tegra/cpuidle-tegra30.c b/arch/arm/mach-tegra/cpuidle-tegra30.c index f8815ed65d9d..84d809a3cba3 100644 --- a/arch/arm/mach-tegra/cpuidle-tegra30.c +++ b/arch/arm/mach-tegra/cpuidle-tegra30.c | |||
@@ -20,7 +20,7 @@ | |||
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include <linux/clk/tegra.h> | 22 | #include <linux/clk/tegra.h> |
23 | #include <linux/clockchips.h> | 23 | #include <linux/tick.h> |
24 | #include <linux/cpuidle.h> | 24 | #include <linux/cpuidle.h> |
25 | #include <linux/cpu_pm.h> | 25 | #include <linux/cpu_pm.h> |
26 | #include <linux/kernel.h> | 26 | #include <linux/kernel.h> |
@@ -76,11 +76,11 @@ static bool tegra30_cpu_cluster_power_down(struct cpuidle_device *dev, | |||
76 | return false; | 76 | return false; |
77 | } | 77 | } |
78 | 78 | ||
79 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &dev->cpu); | 79 | tick_broadcast_enter(); |
80 | 80 | ||
81 | tegra_idle_lp2_last(); | 81 | tegra_idle_lp2_last(); |
82 | 82 | ||
83 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &dev->cpu); | 83 | tick_broadcast_exit(); |
84 | 84 | ||
85 | return true; | 85 | return true; |
86 | } | 86 | } |
@@ -90,13 +90,13 @@ static bool tegra30_cpu_core_power_down(struct cpuidle_device *dev, | |||
90 | struct cpuidle_driver *drv, | 90 | struct cpuidle_driver *drv, |
91 | int index) | 91 | int index) |
92 | { | 92 | { |
93 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &dev->cpu); | 93 | tick_broadcast_enter(); |
94 | 94 | ||
95 | smp_wmb(); | 95 | smp_wmb(); |
96 | 96 | ||
97 | cpu_suspend(0, tegra30_sleep_cpu_secondary_finish); | 97 | cpu_suspend(0, tegra30_sleep_cpu_secondary_finish); |
98 | 98 | ||
99 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &dev->cpu); | 99 | tick_broadcast_exit(); |
100 | 100 | ||
101 | return true; | 101 | return true; |
102 | } | 102 | } |