diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-01 05:56:41 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-07 20:57:42 -0500 |
commit | 53f087febfd12e74ba9f1082e71e9a45adc039ad (patch) | |
tree | 8908ff3ecc3c97fb536c616df0f9d46356c4739f /kernel/timer.c | |
parent | 76edc6051e02186fe664ab880447e2d1f96fd884 (diff) |
[PATCH] timer.c NULL noise removal
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel/timer.c')
-rw-r--r-- | kernel/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/timer.c b/kernel/timer.c index 4f1cb0ab5251..b9dad3994676 100644 --- a/kernel/timer.c +++ b/kernel/timer.c | |||
@@ -495,7 +495,7 @@ unsigned long next_timer_interrupt(void) | |||
495 | base = &__get_cpu_var(tvec_bases); | 495 | base = &__get_cpu_var(tvec_bases); |
496 | spin_lock(&base->t_base.lock); | 496 | spin_lock(&base->t_base.lock); |
497 | expires = base->timer_jiffies + (LONG_MAX >> 1); | 497 | expires = base->timer_jiffies + (LONG_MAX >> 1); |
498 | list = 0; | 498 | list = NULL; |
499 | 499 | ||
500 | /* Look for timer events in tv1. */ | 500 | /* Look for timer events in tv1. */ |
501 | j = base->timer_jiffies & TVR_MASK; | 501 | j = base->timer_jiffies & TVR_MASK; |