]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PARISC] Fix up parisc irq handling for genirq changes
authorKyle McMartin <kyle@parisc-linux.org>
Mon, 14 Aug 2006 02:25:45 +0000 (22:25 -0400)
committerMatthew Wilcox <willy@parisc-linux.org>
Wed, 4 Oct 2006 12:45:59 +0000 (06:45 -0600)
Clean up enough to get things compiling again in the interim.

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
arch/parisc/kernel/irq.c
include/asm-parisc/irq.h

index 5b8803cc3d69498c1bc916cee4bfd4467d14b61f..c53bfeb4bf94a3aea45e3dc0bd38eedf2aa29949 100644 (file)
@@ -209,7 +209,7 @@ int show_interrupts(struct seq_file *p, void *v)
 ** Then use that to get the Transaction address and data.
 */
 
-int cpu_claim_irq(unsigned int irq, struct hw_interrupt_type *type, void *data)
+int cpu_claim_irq(unsigned int irq, struct irq_chip *type, void *data)
 {
        if (irq_desc[irq].action)
                return -EBUSY;
index 5cae260615a22a74d14075d529a47419e9d02137..6e29cfa2812d844d34e92f358c9e8cd7f30904db 100644 (file)
@@ -31,7 +31,7 @@ static __inline__ int irq_canonicalize(int irq)
        return (irq == 2) ? 9 : irq;
 }
 
-struct hw_interrupt_type;
+struct irq_chip;
 
 /*
  * Some useful "we don't have to do anything here" handlers.  Should
@@ -46,7 +46,7 @@ extern unsigned int txn_alloc_data(unsigned int);
 extern unsigned long txn_alloc_addr(unsigned int);
 extern unsigned long txn_affinity_addr(unsigned int irq, int cpu);
 
-extern int cpu_claim_irq(unsigned int irq, struct hw_interrupt_type *, void *);
+extern int cpu_claim_irq(unsigned int irq, struct irq_chip *, void *);
 extern int cpu_check_affinity(unsigned int irq, cpumask_t *dest);
 
 /* soft power switch support (power.c) */