diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-24 17:41:44 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-03-29 14:48:08 +0200 |
commit | e2f571d294cc5f944539088bed46abae375b75f6 (patch) | |
tree | a0d5013a0a4836713961b25c8c0ffea09554f088 /drivers/parisc/eisa.c | |
parent | 337ce6811bfe474cc449de1f95d2c4f26641f5af (diff) | |
download | talos-op-linux-e2f571d294cc5f944539088bed46abae375b75f6.tar.gz talos-op-linux-e2f571d294cc5f944539088bed46abae375b75f6.zip |
parisc: Convert irq namespace
Convert to the new function names. Scripted with coccinelle.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: linux-parisc@vger.kernel.org
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 deeec32a5803..103095bbe8c0 100644 --- a/drivers/parisc/eisa.c +++ b/drivers/parisc/eisa.c @@ -340,7 +340,7 @@ static int __init eisa_probe(struct parisc_device *dev) /* Reserve IRQ2 */ setup_irq(2, &irq2_action); for (i = 0; i < 16; i++) { - set_irq_chip_and_handler(i, &eisa_interrupt_type, + irq_set_chip_and_handler(i, &eisa_interrupt_type, handle_simple_irq); } |