aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/sysdev/i8259.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2009-11-18 23:44:21 +0000
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2009-11-24 14:32:45 +1100
commitb27df67248d3ae61d7814f18e363954254935090 (patch)
treebb8015be2cb1770500ed04f7e2cb62ab907a6c8e /arch/powerpc/sysdev/i8259.c
parentpowerpc: Replace old style lock initializer (diff)
downloadlinux-dev-b27df67248d3ae61d7814f18e363954254935090.tar.xz
linux-dev-b27df67248d3ae61d7814f18e363954254935090.zip
powerpc: Fixup last users of irq_chip->typename
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: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: linuxppc-dev@ozlabs.org Acked-by: Geoff Levand <geoffrey.levand@am.sony.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev/i8259.c')
-rw-r--r--arch/powerpc/sysdev/i8259.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/i8259.c b/arch/powerpc/sysdev/i8259.c
index 78ed945453db..ba8f1f708992 100644
--- a/arch/powerpc/sysdev/i8259.c
+++ b/arch/powerpc/sysdev/i8259.c
@@ -135,7 +135,7 @@ static void i8259_unmask_irq(unsigned int irq_nr)
}
static struct irq_chip i8259_pic = {
- .typename = " i8259 ",
+ .name = " i8259 ",
.mask = i8259_mask_irq,
.disable = i8259_mask_irq,
.unmask = i8259_unmask_irq,