diff options
author | Hirokazu Takata <takata@linux-m32r.org> | 2005-06-21 20:16:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-21 22:07:30 -0400 |
commit | 6f973b001a9b511900fb73d816adf77d8755838c (patch) | |
tree | afe857801e8afcda19ba84fb4961abd050ee6cf6 /arch/m32r/kernel/setup_mappi.c | |
parent | 2368086344c3d67b0f4aecac39d620fb9b8795c3 (diff) |
[PATCH] m32r: Update setup_xxxxx.c
Change coding styles of hw_interrupt_type struct's initialization portions.
Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/m32r/kernel/setup_mappi.c')
-rw-r--r-- | arch/m32r/kernel/setup_mappi.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/m32r/kernel/setup_mappi.c b/arch/m32r/kernel/setup_mappi.c index 1e74110f0670..aaf8e569b930 100644 --- a/arch/m32r/kernel/setup_mappi.c +++ b/arch/m32r/kernel/setup_mappi.c | |||
@@ -70,13 +70,13 @@ static void shutdown_mappi_irq(unsigned int irq) | |||
70 | 70 | ||
71 | static struct hw_interrupt_type mappi_irq_type = | 71 | static struct hw_interrupt_type mappi_irq_type = |
72 | { | 72 | { |
73 | "MAPPI-IRQ", | 73 | .typename = "MAPPI-IRQ", |
74 | startup_mappi_irq, | 74 | .startup = startup_mappi_irq, |
75 | shutdown_mappi_irq, | 75 | .shutdown = shutdown_mappi_irq, |
76 | enable_mappi_irq, | 76 | .enable = enable_mappi_irq, |
77 | disable_mappi_irq, | 77 | .disable = disable_mappi_irq, |
78 | mask_and_ack_mappi, | 78 | .ack = mask_and_ack_mappi, |
79 | end_mappi_irq | 79 | .end = end_mappi_irq |
80 | }; | 80 | }; |
81 | 81 | ||
82 | void __init init_IRQ(void) | 82 | void __init init_IRQ(void) |