[PATCH] SH64: C99 initializers for hw_interrupt_type structures
Convert the initializers of hw_interrupt_type structures to C99 initializers. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Родитель
aecd4568ac
Коммит
c05e0664e1
|
@ -107,13 +107,13 @@ static void mask_and_ack_intc(unsigned int);
|
||||||
static void end_intc_irq(unsigned int irq);
|
static void end_intc_irq(unsigned int irq);
|
||||||
|
|
||||||
static struct hw_interrupt_type intc_irq_type = {
|
static struct hw_interrupt_type intc_irq_type = {
|
||||||
"INTC",
|
.typename = "INTC",
|
||||||
startup_intc_irq,
|
.startup = startup_intc_irq,
|
||||||
shutdown_intc_irq,
|
.shutdown = shutdown_intc_irq,
|
||||||
enable_intc_irq,
|
.enable = enable_intc_irq,
|
||||||
disable_intc_irq,
|
.disable = disable_intc_irq,
|
||||||
mask_and_ack_intc,
|
.ack = mask_and_ack_intc,
|
||||||
end_intc_irq
|
.end = end_intc_irq
|
||||||
};
|
};
|
||||||
|
|
||||||
static int irlm; /* IRL mode */
|
static int irlm; /* IRL mode */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче