diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-16 04:27:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:09 -0400 |
commit | 70af26b2d4bc55570ac30b5eced4ff0319e24455 (patch) | |
tree | 45f6ab78d7dcb363cd224a19d4b5651ed3608f86 /arch/v850/kernel/time.c | |
parent | a24864a1d52a97e345a6bd4862a057f98364d098 (diff) |
V850: cleanup struct irqaction initializers
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Miles Bader <miles@gnu.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/v850/kernel/time.c')
-rw-r--r-- | arch/v850/kernel/time.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/arch/v850/kernel/time.c b/arch/v850/kernel/time.c index f0905b03523b..d810c93fe665 100644 --- a/arch/v850/kernel/time.c +++ b/arch/v850/kernel/time.c | |||
@@ -92,12 +92,11 @@ static irqreturn_t timer_interrupt (int irq, void *dummy, struct pt_regs *regs) | |||
92 | 92 | ||
93 | static int timer_dev_id; | 93 | static int timer_dev_id; |
94 | static struct irqaction timer_irqaction = { | 94 | static struct irqaction timer_irqaction = { |
95 | timer_interrupt, | 95 | .handler = timer_interrupt, |
96 | IRQF_DISABLED, | 96 | .flags = IRQF_DISABLED, |
97 | CPU_MASK_NONE, | 97 | .mask = CPU_MASK_NONE, |
98 | "timer", | 98 | .name = "timer", |
99 | &timer_dev_id, | 99 | .dev_id = &timer_dev_id, |
100 | NULL | ||
101 | }; | 100 | }; |
102 | 101 | ||
103 | void time_init (void) | 102 | void time_init (void) |