Commit e2f571d2 authored by Thomas Gleixner's avatar Thomas Gleixner

parisc: Convert irq namespace

Convert to the new function names. Scripted with coccinelle.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Cc: linux-parisc@vger.kernel.org
parent 337ce681
...@@ -235,13 +235,13 @@ int cpu_claim_irq(unsigned int irq, struct irq_chip *type, void *data) ...@@ -235,13 +235,13 @@ int cpu_claim_irq(unsigned int irq, struct irq_chip *type, void *data)
{ {
if (irq_desc[irq].action) if (irq_desc[irq].action)
return -EBUSY; return -EBUSY;
if (get_irq_chip(irq) != &cpu_interrupt_type) if (irq_get_chip(irq) != &cpu_interrupt_type)
return -EBUSY; return -EBUSY;
/* for iosapic interrupts */ /* for iosapic interrupts */
if (type) { if (type) {
set_irq_chip_and_handler(irq, type, handle_percpu_irq); irq_set_chip_and_handler(irq, type, handle_percpu_irq);
set_irq_chip_data(irq, data); irq_set_chip_data(irq, data);
__cpu_unmask_irq(irq); __cpu_unmask_irq(irq);
} }
return 0; return 0;
...@@ -393,14 +393,14 @@ static void claim_cpu_irqs(void) ...@@ -393,14 +393,14 @@ static void claim_cpu_irqs(void)
{ {
int i; int i;
for (i = CPU_IRQ_BASE; i <= CPU_IRQ_MAX; i++) { for (i = CPU_IRQ_BASE; i <= CPU_IRQ_MAX; i++) {
set_irq_chip_and_handler(i, &cpu_interrupt_type, irq_set_chip_and_handler(i, &cpu_interrupt_type,
handle_percpu_irq); handle_percpu_irq);
} }
set_irq_handler(TIMER_IRQ, handle_percpu_irq); irq_set_handler(TIMER_IRQ, handle_percpu_irq);
setup_irq(TIMER_IRQ, &timer_action); setup_irq(TIMER_IRQ, &timer_action);
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
set_irq_handler(IPI_IRQ, handle_percpu_irq); irq_set_handler(IPI_IRQ, handle_percpu_irq);
setup_irq(IPI_IRQ, &ipi_action); setup_irq(IPI_IRQ, &ipi_action);
#endif #endif
} }
......
...@@ -340,7 +340,7 @@ static int __init eisa_probe(struct parisc_device *dev) ...@@ -340,7 +340,7 @@ static int __init eisa_probe(struct parisc_device *dev)
/* Reserve IRQ2 */ /* Reserve IRQ2 */
setup_irq(2, &irq2_action); setup_irq(2, &irq2_action);
for (i = 0; i < 16; i++) { 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); handle_simple_irq);
} }
......
...@@ -152,8 +152,8 @@ int gsc_assign_irq(struct irq_chip *type, void *data) ...@@ -152,8 +152,8 @@ int gsc_assign_irq(struct irq_chip *type, void *data)
if (irq > GSC_IRQ_MAX) if (irq > GSC_IRQ_MAX)
return NO_IRQ; return NO_IRQ;
set_irq_chip_and_handler(irq, type, handle_simple_irq); irq_set_chip_and_handler(irq, type, handle_simple_irq);
set_irq_chip_data(irq, data); irq_set_chip_data(irq, data);
return irq++; return irq++;
} }
......
...@@ -355,7 +355,8 @@ int superio_fixup_irq(struct pci_dev *pcidev) ...@@ -355,7 +355,8 @@ int superio_fixup_irq(struct pci_dev *pcidev)
#endif #endif
for (i = 0; i < 16; i++) { for (i = 0; i < 16; i++) {
set_irq_chip_and_handler(i, &superio_interrupt_type, handle_simple_irq); irq_set_chip_and_handler(i, &superio_interrupt_type,
handle_simple_irq);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment