From: Al Viro Date: Wed, 1 Feb 2006 10:56:41 +0000 (-0500) Subject: [PATCH] timer.c NULL noise removal X-Git-Tag: v2.6.16-rc3~84 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=53f087febfd12e74ba9f1082e71e9a45adc039ad;p=linux-2.6-omap-h63xx.git [PATCH] timer.c NULL noise removal Signed-off-by: Al Viro --- diff --git a/kernel/timer.c b/kernel/timer.c index 4f1cb0ab525..b9dad399467 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;