diff options
author | Jeff Garzik <jgarzik@pretzel.yyz.us> | 2005-06-22 21:50:57 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-06-22 21:50:57 -0400 |
commit | a5324343955997d1439f26518ddac567cd5d134b (patch) | |
tree | f43558389c41e3a0f076c4ee55d77c4aa1561779 /arch/m32r/kernel/setup_opsput.c | |
parent | 8199d3a79c224bbe5943fa08684e1f93a17881b0 (diff) | |
parent | a4936044001694f033fe4ea94d6034d51a6b465c (diff) |
Merge /spare/repo/linux-2.6/
Diffstat (limited to 'arch/m32r/kernel/setup_opsput.c')
-rw-r--r-- | arch/m32r/kernel/setup_opsput.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/arch/m32r/kernel/setup_opsput.c b/arch/m32r/kernel/setup_opsput.c index 84315e344c58..86f4cf2a86c3 100644 --- a/arch/m32r/kernel/setup_opsput.c +++ b/arch/m32r/kernel/setup_opsput.c | |||
@@ -79,13 +79,13 @@ static void shutdown_opsput_irq(unsigned int irq) | |||
79 | 79 | ||
80 | static struct hw_interrupt_type opsput_irq_type = | 80 | static struct hw_interrupt_type opsput_irq_type = |
81 | { | 81 | { |
82 | "OPSPUT-IRQ", | 82 | .typename = "OPSPUT-IRQ", |
83 | startup_opsput_irq, | 83 | .startup = startup_opsput_irq, |
84 | shutdown_opsput_irq, | 84 | .shutdown = shutdown_opsput_irq, |
85 | enable_opsput_irq, | 85 | .enable = enable_opsput_irq, |
86 | disable_opsput_irq, | 86 | .disable = disable_opsput_irq, |
87 | mask_and_ack_opsput, | 87 | .ack = mask_and_ack_opsput, |
88 | end_opsput_irq | 88 | .end = end_opsput_irq |
89 | }; | 89 | }; |
90 | 90 | ||
91 | /* | 91 | /* |
@@ -156,13 +156,13 @@ static void shutdown_opsput_pld_irq(unsigned int irq) | |||
156 | 156 | ||
157 | static struct hw_interrupt_type opsput_pld_irq_type = | 157 | static struct hw_interrupt_type opsput_pld_irq_type = |
158 | { | 158 | { |
159 | "OPSPUT-PLD-IRQ", | 159 | .typename = "OPSPUT-PLD-IRQ", |
160 | startup_opsput_pld_irq, | 160 | .startup = startup_opsput_pld_irq, |
161 | shutdown_opsput_pld_irq, | 161 | .shutdown = shutdown_opsput_pld_irq, |
162 | enable_opsput_pld_irq, | 162 | .enable = enable_opsput_pld_irq, |
163 | disable_opsput_pld_irq, | 163 | .disable = disable_opsput_pld_irq, |
164 | mask_and_ack_opsput_pld, | 164 | .ack = mask_and_ack_opsput_pld, |
165 | end_opsput_pld_irq | 165 | .end = end_opsput_pld_irq |
166 | }; | 166 | }; |
167 | 167 | ||
168 | /* | 168 | /* |