Convert struct hw_interrupt_type initializations to ISO C99 named
initializers. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
@@ -52,14 +52,13 @@ static unsigned int startup_8259A_irq(unsigned int irq)
|
||||
}
|
||||
|
||||
static struct hw_interrupt_type i8259A_irq_type = {
|
||||
"XT-PIC",
|
||||
startup_8259A_irq,
|
||||
shutdown_8259A_irq,
|
||||
enable_8259A_irq,
|
||||
disable_8259A_irq,
|
||||
mask_and_ack_8259A,
|
||||
end_8259A_irq,
|
||||
NULL
|
||||
.typename = "XT-PIC",
|
||||
.startup = startup_8259A_irq,
|
||||
.shutdown = shutdown_8259A_irq,
|
||||
.enable = enable_8259A_irq,
|
||||
.disable = disable_8259A_irq,
|
||||
.ack = mask_and_ack_8259A,
|
||||
.end = end_8259A_irq,
|
||||
};
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user