[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>
This commit is contained in:
Hirokazu Takata
2005-06-21 17:16:13 -07:00
committed by Linus Torvalds
parent 2368086344
commit 6f973b001a
7 changed files with 84 additions and 84 deletions

View File

@ -70,13 +70,13 @@ static void shutdown_mappi_irq(unsigned int irq)
static struct hw_interrupt_type mappi_irq_type =
{
"M32700-IRQ",
startup_mappi_irq,
shutdown_mappi_irq,
enable_mappi_irq,
disable_mappi_irq,
mask_and_ack_mappi,
end_mappi_irq
.typename = "M32700-IRQ",
.startup = startup_mappi_irq,
.shutdown = shutdown_mappi_irq,
.enable = enable_mappi_irq,
.disable = disable_mappi_irq,
.ack = mask_and_ack_mappi,
.end = end_mappi_irq
};
/*
@ -143,13 +143,13 @@ static void shutdown_m32700ut_pld_irq(unsigned int irq)
static struct hw_interrupt_type m32700ut_pld_irq_type =
{
"USRV-PLD-IRQ",
startup_m32700ut_pld_irq,
shutdown_m32700ut_pld_irq,
enable_m32700ut_pld_irq,
disable_m32700ut_pld_irq,
mask_and_ack_m32700ut_pld,
end_m32700ut_pld_irq
.typename = "USRV-PLD-IRQ",
.startup = startup_m32700ut_pld_irq,
.shutdown = shutdown_m32700ut_pld_irq,
.enable = enable_m32700ut_pld_irq,
.disable = disable_m32700ut_pld_irq,
.ack = mask_and_ack_m32700ut_pld,
.end = end_m32700ut_pld_irq
};
void __init init_IRQ(void)