FRV: cleanup struct irqaction initializers
authorThomas Gleixner <[email protected]>
Tue, 16 Oct 2007 08:26:29 +0000 (01:26 -0700)
committerLinus Torvalds <[email protected]>
Tue, 16 Oct 2007 16:43:03 +0000 (09:43 -0700)
Signed-off-by: Thomas Gleixner <[email protected]>
Cc: David Howells <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
arch/frv/kernel/time.c

index ed588d73d7d8528bb93f4909affca45403270d87..e83e0bccfab98d50af92d125e133ef8b275973fd 100644 (file)
@@ -43,7 +43,10 @@ unsigned long __delay_loops_MHz;
 static irqreturn_t timer_interrupt(int irq, void *dummy);
 
 static struct irqaction timer_irq  = {
-       timer_interrupt, IRQF_DISABLED, CPU_MASK_NONE, "timer", NULL, NULL
+       .handler = timer_interrupt,
+       .flags = IRQF_DISABLED,
+       .mask = CPU_MASK_NONE,
+       .name = "timer",
 };
 
 static inline int set_rtc_mmss(unsigned long nowtime)