aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/timer.c
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2014-03-18 13:23:15 +0530
committerThomas Gleixner <tglx@linutronix.de>2014-03-20 12:35:45 +0100
commitc41eba7de133e43ea2c998ccd484059feab200f6 (patch)
tree1245b2aeb0e324e561b9342ba9fda3aed61073e3 /kernel/timer.c
parentclocksource: exynos_mct: silence a static checker warning (diff)
downloadlinux-dev-c41eba7de133e43ea2c998ccd484059feab200f6.tar.xz
linux-dev-c41eba7de133e43ea2c998ccd484059feab200f6.zip
timer: Use variable head instead of &work_list in __run_timers()
We already have a variable 'head' that points to '&work_list', and so we should use that instead wherever possible. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Cc: linaro-kernel@lists.linaro.org Link: http://lkml.kernel.org/r/0d8645a6efc8360c4196c9797d59343abbfdcc5e.1395129136.git.viresh.kumar@linaro.org Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/timer.c')
-rw-r--r--kernel/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/timer.c b/kernel/timer.c
index 949d74ea0ce4..8e503fec1fba 100644
--- a/kernel/timer.c
+++ b/kernel/timer.c
@@ -1192,7 +1192,7 @@ static inline void __run_timers(struct tvec_base *base)
!cascade(base, &base->tv4, INDEX(2)))
cascade(base, &base->tv5, INDEX(3));
++base->timer_jiffies;
- list_replace_init(base->tv1.vec + index, &work_list);
+ list_replace_init(base->tv1.vec + index, head);
while (!list_empty(head)) {
void (*fn)(unsigned long);
unsigned long data;