diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-11-17 17:50:59 -0500 |
---|---|---|
committer | Kyle McMartin <kyle@mcmartin.ca> | 2009-12-15 22:48:56 -0500 |
commit | d0608b54740c82b08056b7611e38a3fd73be3564 (patch) | |
tree | 0a8c0ed4dd38402864ceee1c9d343ee1cb72f17a /drivers/parisc/eisa.c | |
parent | 217bfb5190813d97e6003f7692f8014655ffc02a (diff) |
parisc: 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>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'drivers/parisc/eisa.c')
-rw-r--r-- | drivers/parisc/eisa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parisc/eisa.c b/drivers/parisc/eisa.c index 51220749cb65..46f503fb7fc5 100644 --- a/drivers/parisc/eisa.c +++ b/drivers/parisc/eisa.c | |||
@@ -189,7 +189,7 @@ static unsigned int eisa_startup_irq(unsigned int irq) | |||
189 | } | 189 | } |
190 | 190 | ||
191 | static struct irq_chip eisa_interrupt_type = { | 191 | static struct irq_chip eisa_interrupt_type = { |
192 | .typename = "EISA", | 192 | .name = "EISA", |
193 | .startup = eisa_startup_irq, | 193 | .startup = eisa_startup_irq, |
194 | .shutdown = eisa_disable_irq, | 194 | .shutdown = eisa_disable_irq, |
195 | .enable = eisa_enable_irq, | 195 | .enable = eisa_enable_irq, |