diff options
Diffstat (limited to 'arch/m32r/kernel/setup_m32700ut.c')
-rw-r--r-- | arch/m32r/kernel/setup_m32700ut.c | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/arch/m32r/kernel/setup_m32700ut.c b/arch/m32r/kernel/setup_m32700ut.c index 488aa87bab76..b014e2c1e524 100644 --- a/arch/m32r/kernel/setup_m32700ut.c +++ b/arch/m32r/kernel/setup_m32700ut.c | |||
@@ -78,13 +78,13 @@ static void shutdown_m32700ut_irq(unsigned int irq) | |||
78 | 78 | ||
79 | static struct hw_interrupt_type m32700ut_irq_type = | 79 | static struct hw_interrupt_type m32700ut_irq_type = |
80 | { | 80 | { |
81 | "M32700UT-IRQ", | 81 | .typename = "M32700UT-IRQ", |
82 | startup_m32700ut_irq, | 82 | .startup = startup_m32700ut_irq, |
83 | shutdown_m32700ut_irq, | 83 | .shutdown = shutdown_m32700ut_irq, |
84 | enable_m32700ut_irq, | 84 | .enable = enable_m32700ut_irq, |
85 | disable_m32700ut_irq, | 85 | .disable = disable_m32700ut_irq, |
86 | mask_and_ack_m32700ut, | 86 | .ack = mask_and_ack_m32700ut, |
87 | end_m32700ut_irq | 87 | .end = end_m32700ut_irq |
88 | }; | 88 | }; |
89 | 89 | ||
90 | /* | 90 | /* |
@@ -155,13 +155,13 @@ static void shutdown_m32700ut_pld_irq(unsigned int irq) | |||
155 | 155 | ||
156 | static struct hw_interrupt_type m32700ut_pld_irq_type = | 156 | static struct hw_interrupt_type m32700ut_pld_irq_type = |
157 | { | 157 | { |
158 | "M32700UT-PLD-IRQ", | 158 | .typename = "M32700UT-PLD-IRQ", |
159 | startup_m32700ut_pld_irq, | 159 | .startup = startup_m32700ut_pld_irq, |
160 | shutdown_m32700ut_pld_irq, | 160 | .shutdown = shutdown_m32700ut_pld_irq, |
161 | enable_m32700ut_pld_irq, | 161 | .enable = enable_m32700ut_pld_irq, |
162 | disable_m32700ut_pld_irq, | 162 | .disable = disable_m32700ut_pld_irq, |
163 | mask_and_ack_m32700ut_pld, | 163 | .ack = mask_and_ack_m32700ut_pld, |
164 | end_m32700ut_pld_irq | 164 | .end = end_m32700ut_pld_irq |
165 | }; | 165 | }; |
166 | 166 | ||
167 | /* | 167 | /* |
@@ -224,13 +224,13 @@ static void shutdown_m32700ut_lanpld_irq(unsigned int irq) | |||
224 | 224 | ||
225 | static struct hw_interrupt_type m32700ut_lanpld_irq_type = | 225 | static struct hw_interrupt_type m32700ut_lanpld_irq_type = |
226 | { | 226 | { |
227 | "M32700UT-PLD-LAN-IRQ", | 227 | .typename = "M32700UT-PLD-LAN-IRQ", |
228 | startup_m32700ut_lanpld_irq, | 228 | .startup = startup_m32700ut_lanpld_irq, |
229 | shutdown_m32700ut_lanpld_irq, | 229 | .shutdown = shutdown_m32700ut_lanpld_irq, |
230 | enable_m32700ut_lanpld_irq, | 230 | .enable = enable_m32700ut_lanpld_irq, |
231 | disable_m32700ut_lanpld_irq, | 231 | .disable = disable_m32700ut_lanpld_irq, |
232 | mask_and_ack_m32700ut_lanpld, | 232 | .ack = mask_and_ack_m32700ut_lanpld, |
233 | end_m32700ut_lanpld_irq | 233 | .end = end_m32700ut_lanpld_irq |
234 | }; | 234 | }; |
235 | 235 | ||
236 | /* | 236 | /* |
@@ -293,13 +293,13 @@ static void shutdown_m32700ut_lcdpld_irq(unsigned int irq) | |||
293 | 293 | ||
294 | static struct hw_interrupt_type m32700ut_lcdpld_irq_type = | 294 | static struct hw_interrupt_type m32700ut_lcdpld_irq_type = |
295 | { | 295 | { |
296 | "M32700UT-PLD-LCD-IRQ", | 296 | .typename = "M32700UT-PLD-LCD-IRQ", |
297 | startup_m32700ut_lcdpld_irq, | 297 | .startup = startup_m32700ut_lcdpld_irq, |
298 | shutdown_m32700ut_lcdpld_irq, | 298 | .shutdown = shutdown_m32700ut_lcdpld_irq, |
299 | enable_m32700ut_lcdpld_irq, | 299 | .enable = enable_m32700ut_lcdpld_irq, |
300 | disable_m32700ut_lcdpld_irq, | 300 | .disable = disable_m32700ut_lcdpld_irq, |
301 | mask_and_ack_m32700ut_lcdpld, | 301 | .ack = mask_and_ack_m32700ut_lcdpld, |
302 | end_m32700ut_lcdpld_irq | 302 | .end = end_m32700ut_lcdpld_irq |
303 | }; | 303 | }; |
304 | 304 | ||
305 | void __init init_IRQ(void) | 305 | void __init init_IRQ(void) |