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_mappi3.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_mappi3.c')
-rw-r--r-- | arch/m32r/kernel/setup_mappi3.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/m32r/kernel/setup_mappi3.c b/arch/m32r/kernel/setup_mappi3.c index 72b5b7609cea..3d60a85aaec5 100644 --- a/arch/m32r/kernel/setup_mappi3.c +++ b/arch/m32r/kernel/setup_mappi3.c | |||
@@ -79,13 +79,13 @@ static void shutdown_mappi3_irq(unsigned int irq) | |||
79 | 79 | ||
80 | static struct hw_interrupt_type mappi3_irq_type = | 80 | static struct hw_interrupt_type mappi3_irq_type = |
81 | { | 81 | { |
82 | "MAPPI3-IRQ", | 82 | .typename = "MAPPI3-IRQ", |
83 | startup_mappi3_irq, | 83 | .startup = startup_mappi3_irq, |
84 | shutdown_mappi3_irq, | 84 | .shutdown = shutdown_mappi3_irq, |
85 | enable_mappi3_irq, | 85 | .enable = enable_mappi3_irq, |
86 | disable_mappi3_irq, | 86 | .disable = disable_mappi3_irq, |
87 | mask_and_ack_mappi3, | 87 | .ack = mask_and_ack_mappi3, |
88 | end_mappi3_irq | 88 | .end = end_mappi3_irq |
89 | }; | 89 | }; |
90 | 90 | ||
91 | void __init init_IRQ(void) | 91 | void __init init_IRQ(void) |