[PATCH] timer initialization cleanup: DEFINE_TIMER
Clean up timer initialization by introducing DEFINE_TIMER a'la DEFINE_SPINLOCK. Build and boot-tested on x86. A similar patch has been been in the -RT tree for some time. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
7c352bdf04
commit
8d06afab73
@ -17,7 +17,7 @@
|
||||
static void nr_loopback_timer(unsigned long);
|
||||
|
||||
static struct sk_buff_head loopback_queue;
|
||||
static struct timer_list loopback_timer = TIMER_INITIALIZER(nr_loopback_timer, 0, 0);
|
||||
static DEFINE_TIMER(loopback_timer, nr_loopback_timer, 0, 0);
|
||||
|
||||
void __init nr_loopback_init(void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user