diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2005-09-10 03:26:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-10 13:06:27 -0400 |
commit | c05e0664e1d080344d6ce346de43e51895541e21 (patch) | |
tree | 98ec0a4ad5119aeed12717f037e73db399f841e4 /arch/sh64 | |
parent | aecd4568ac8abcedc1e46fc3804439ac8e1b8ff4 (diff) |
[PATCH] SH64: C99 initializers for hw_interrupt_type structures
Convert the initializers of hw_interrupt_type structures to C99 initializers.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/sh64')
-rw-r--r-- | arch/sh64/kernel/irq_intc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/sh64/kernel/irq_intc.c b/arch/sh64/kernel/irq_intc.c index 43f88f3a78b0..fc99bf4e362c 100644 --- a/arch/sh64/kernel/irq_intc.c +++ b/arch/sh64/kernel/irq_intc.c | |||
@@ -107,13 +107,13 @@ static void mask_and_ack_intc(unsigned int); | |||
107 | static void end_intc_irq(unsigned int irq); | 107 | static void end_intc_irq(unsigned int irq); |
108 | 108 | ||
109 | static struct hw_interrupt_type intc_irq_type = { | 109 | static struct hw_interrupt_type intc_irq_type = { |
110 | "INTC", | 110 | .typename = "INTC", |
111 | startup_intc_irq, | 111 | .startup = startup_intc_irq, |
112 | shutdown_intc_irq, | 112 | .shutdown = shutdown_intc_irq, |
113 | enable_intc_irq, | 113 | .enable = enable_intc_irq, |
114 | disable_intc_irq, | 114 | .disable = disable_intc_irq, |
115 | mask_and_ack_intc, | 115 | .ack = mask_and_ack_intc, |
116 | end_intc_irq | 116 | .end = end_intc_irq |
117 | }; | 117 | }; |
118 | 118 | ||
119 | static int irlm; /* IRL mode */ | 119 | static int irlm; /* IRL mode */ |