diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-11-18 18:44:21 -0500 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-11-23 22:32:45 -0500 |
commit | b27df67248d3ae61d7814f18e363954254935090 (patch) | |
tree | bb8015be2cb1770500ed04f7e2cb62ab907a6c8e /arch/powerpc/platforms/pseries | |
parent | 293cfa44c3a861d63c77923667206356c4756ae0 (diff) |
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/platforms/pseries')
-rw-r--r-- | arch/powerpc/platforms/pseries/xics.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/pseries/xics.c b/arch/powerpc/platforms/pseries/xics.c index 097e8a2a3c5d..6592becd4410 100644 --- a/arch/powerpc/platforms/pseries/xics.c +++ b/arch/powerpc/platforms/pseries/xics.c | |||
@@ -388,7 +388,7 @@ static int xics_set_affinity(unsigned int virq, const struct cpumask *cpumask) | |||
388 | } | 388 | } |
389 | 389 | ||
390 | static struct irq_chip xics_pic_direct = { | 390 | static struct irq_chip xics_pic_direct = { |
391 | .typename = " XICS ", | 391 | .name = " XICS ", |
392 | .startup = xics_startup, | 392 | .startup = xics_startup, |
393 | .mask = xics_mask_irq, | 393 | .mask = xics_mask_irq, |
394 | .unmask = xics_unmask_irq, | 394 | .unmask = xics_unmask_irq, |
@@ -397,7 +397,7 @@ static struct irq_chip xics_pic_direct = { | |||
397 | }; | 397 | }; |
398 | 398 | ||
399 | static struct irq_chip xics_pic_lpar = { | 399 | static struct irq_chip xics_pic_lpar = { |
400 | .typename = " XICS ", | 400 | .name = " XICS ", |
401 | .startup = xics_startup, | 401 | .startup = xics_startup, |
402 | .mask = xics_mask_irq, | 402 | .mask = xics_mask_irq, |
403 | .unmask = xics_unmask_irq, | 403 | .unmask = xics_unmask_irq, |