diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-16 04:26:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:04 -0400 |
commit | e5f717812982c7b2a20d5f2d897f7cce6db9c5e6 (patch) | |
tree | 2eb8bf2ea24c591bcac2e588f8bca654561514d6 /arch/cris/arch-v10 | |
parent | 0ac15559150a20d39d381a6be44cdea373584222 (diff) |
CRIS: cleanup struct irqaction initializers
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Mikael Starvik <starvik@axis.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/cris/arch-v10')
-rw-r--r-- | arch/cris/arch-v10/kernel/time.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/cris/arch-v10/kernel/time.c b/arch/cris/arch-v10/kernel/time.c index 077e973c33f0..575a14bb1106 100644 --- a/arch/cris/arch-v10/kernel/time.c +++ b/arch/cris/arch-v10/kernel/time.c | |||
@@ -254,8 +254,12 @@ timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) | |||
254 | * it needs to be IRQF_DISABLED to make the jiffies update work properly | 254 | * it needs to be IRQF_DISABLED to make the jiffies update work properly |
255 | */ | 255 | */ |
256 | 256 | ||
257 | static struct irqaction irq2 = { timer_interrupt, IRQF_SHARED | IRQF_DISABLED, | 257 | static struct irqaction irq2 = { |
258 | CPU_MASK_NONE, "timer", NULL, NULL}; | 258 | .handler = timer_interrupt, |
259 | .flags = IRQF_SHARED | IRQF_DISABLED, | ||
260 | .mask = CPU_MASK_NONE, | ||
261 | .name = "timer", | ||
262 | }; | ||
259 | 263 | ||
260 | void __init | 264 | void __init |
261 | time_init(void) | 265 | time_init(void) |