diff options
Diffstat (limited to 'arch/x86_64/kernel/i8259.c')
-rw-r--r-- | arch/x86_64/kernel/i8259.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/arch/x86_64/kernel/i8259.c b/arch/x86_64/kernel/i8259.c index 7873d9ba8814..19eafa0aa95c 100644 --- a/arch/x86_64/kernel/i8259.c +++ b/arch/x86_64/kernel/i8259.c | |||
@@ -157,14 +157,13 @@ static unsigned int startup_8259A_irq(unsigned int irq) | |||
157 | } | 157 | } |
158 | 158 | ||
159 | static struct hw_interrupt_type i8259A_irq_type = { | 159 | static struct hw_interrupt_type i8259A_irq_type = { |
160 | "XT-PIC", | 160 | .typename = "XT-PIC", |
161 | startup_8259A_irq, | 161 | .startup = startup_8259A_irq, |
162 | shutdown_8259A_irq, | 162 | .shutdown = shutdown_8259A_irq, |
163 | enable_8259A_irq, | 163 | .enable = enable_8259A_irq, |
164 | disable_8259A_irq, | 164 | .disable = disable_8259A_irq, |
165 | mask_and_ack_8259A, | 165 | .ack = mask_and_ack_8259A, |
166 | end_8259A_irq, | 166 | .end = end_8259A_irq, |
167 | NULL | ||
168 | }; | 167 | }; |
169 | 168 | ||
170 | /* | 169 | /* |