aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/time/tick-common.c
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2015-05-21 13:33:46 +0530
committerThomas Gleixner <tglx@linutronix.de>2015-06-02 14:40:47 +0200
commit472c4a9437d3c6a0b1e59df7c5aa14075946aa70 (patch)
tree6398aeeb0a87cd8c96fb8ba2247efa139f412543 /kernel/time/tick-common.c
parentclockevents: Add helpers to check the state of a clockevent device (diff)
downloadlinux-dev-472c4a9437d3c6a0b1e59df7c5aa14075946aa70.tar.xz
linux-dev-472c4a9437d3c6a0b1e59df7c5aa14075946aa70.zip
clockevents: Use helpers to check the state of a clockevent device
Use accessor functions to check the state of clockevent devices in core code. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Cc: linaro-kernel@lists.linaro.org Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/fa2b9869fd17f210eaa156ec2b594efd0230b6c7.1432192527.git.viresh.kumar@linaro.org Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/time/tick-common.c')
-rw-r--r--kernel/time/tick-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/tick-common.c b/kernel/time/tick-common.c
index ea5f9eae8f74..cf881c62c3c5 100644
--- a/kernel/time/tick-common.c
+++ b/kernel/time/tick-common.c
@@ -112,7 +112,7 @@ void tick_handle_periodic(struct clock_event_device *dev)
return;
#endif
- if (dev->state != CLOCK_EVT_STATE_ONESHOT)
+ if (!clockevent_state_oneshot(dev))
return;
for (;;) {
/*