From: Al Viro Date: Wed, 1 Feb 2006 10:56:41 +0000 (-0500) Subject: [PATCH] timer.c NULL noise removal X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=53f087febfd12e74ba9f1082e71e9a45adc039ad;p=deliverable%2Flinux.git [PATCH] timer.c NULL noise removal Signed-off-by: Al Viro --- 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) base = &__get_cpu_var(tvec_bases); spin_lock(&base->t_base.lock); expires = base->timer_jiffies + (LONG_MAX >> 1); - list = 0; + list = NULL; /* Look for timer events in tv1. */ j = base->timer_jiffies & TVR_MASK;