]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
MIPS: Fixup last users of irq_chip->typename
authorThomas Gleixner <tglx@linutronix.de>
Tue, 17 Nov 2009 22:51:03 +0000 (22:51 +0000)
committerRalf Baechle <ralf@linux-mips.org>
Thu, 17 Dec 2009 01:57:21 +0000 (01:57 +0000)
The typename member of struct irq_chip was kept for migration purposes
and is obsolete since more than 2 years. Fix up the leftovers.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-mips@linux-mips.org
To: LKML <linux-kernel@vger.kernel.org>
Cc: Ingo Molnar <mingo@elte.hu>
Patchwork: http://patchwork.linux-mips.org/patch/661/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/nxp/pnx833x/common/interrupts.c
arch/mips/sni/a20r.c
arch/mips/sni/pcimt.c
arch/mips/sni/pcit.c
arch/mips/sni/rm200.c

index 30533ba200e211618cff8b46d28905cb28a82579..3a467c04f81122698002b979e71692ceb30ef9aa 100644 (file)
@@ -295,7 +295,7 @@ static int pnx833x_set_type_gpio_irq(unsigned int irq, unsigned int flow_type)
 }
 
 static struct irq_chip pnx833x_pic_irq_type = {
-       .typename = "PNX-PIC",
+       .name = "PNX-PIC",
        .startup = pnx833x_startup_pic_irq,
        .shutdown = pnx833x_shutdown_pic_irq,
        .enable = pnx833x_enable_pic_irq,
@@ -305,7 +305,7 @@ static struct irq_chip pnx833x_pic_irq_type = {
 };
 
 static struct irq_chip pnx833x_gpio_irq_type = {
-       .typename = "PNX-GPIO",
+       .name = "PNX-GPIO",
        .startup = pnx833x_startup_gpio_irq,
        .shutdown = pnx833x_disable_gpio_irq,
        .enable = pnx833x_enable_gpio_irq,
index 7dd76fb3b64500b67e1554c7c229b010cce6391d..e6980892834aae7a00865172e2303c67732bc86b 100644 (file)
@@ -188,7 +188,7 @@ static void end_a20r_irq(unsigned int irq)
 }
 
 static struct irq_chip a20r_irq_type = {
-       .typename       = "A20R",
+       .name           = "A20R",
        .ack            = mask_a20r_irq,
        .mask           = mask_a20r_irq,
        .mask_ack       = mask_a20r_irq,
index 74e6c67982fb693134c023866aa80328826dbf73..51e62bbaa23bb2440fa671fc22fe57930690aea6 100644 (file)
@@ -214,7 +214,7 @@ static void end_pcimt_irq(unsigned int irq)
 }
 
 static struct irq_chip pcimt_irq_type = {
-       .typename = "PCIMT",
+       .name = "PCIMT",
        .ack = disable_pcimt_irq,
        .mask = disable_pcimt_irq,
        .mask_ack = disable_pcimt_irq,
index 071a9573ac7f65345d4d6b23589b3851d5f511a8..f4699d35858b70820f638d053dac36be73f4da5c 100644 (file)
@@ -176,7 +176,7 @@ void end_pcit_irq(unsigned int irq)
 }
 
 static struct irq_chip pcit_irq_type = {
-       .typename = "PCIT",
+       .name = "PCIT",
        .ack = disable_pcit_irq,
        .mask = disable_pcit_irq,
        .mask_ack = disable_pcit_irq,
index 5e687819cbc2aec4aec85dbada30184a345a6551..46f00691f448865888991202e529ee9334bf9044 100644 (file)
@@ -449,7 +449,7 @@ void end_rm200_irq(unsigned int irq)
 }
 
 static struct irq_chip rm200_irq_type = {
-       .typename = "RM200",
+       .name = "RM200",
        .ack = disable_rm200_irq,
        .mask = disable_rm200_irq,
        .mask_ack = disable_rm200_irq,