| Date | Sat, 18 Nov 2006 00:59:47 +0100 | From | Adrian Bunk <> | Subject | [RFC: -mm patch] make kernel/timer.c:__next_timer_interrupt() static |
| |
This patch makes the needlessly global __next_timer_interrupt() static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- linux-2.6.19-rc5-mm2/kernel/timer.c.old 2006-11-17 19:11:49.000000000 +0100 +++ linux-2.6.19-rc5-mm2/kernel/timer.c 2006-11-17 19:12:02.000000000 +0100 @@ -621,7 +621,8 @@ * is used on S/390 to stop all activity when a cpus is idle. * This functions needs to be called disabled. */ -unsigned long __next_timer_interrupt(tvec_base_t *base, unsigned long now) +static unsigned long __next_timer_interrupt(tvec_base_t *base, + unsigned long now) { struct list_head *list; struct timer_list *nte, *found = NULL; - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|