diff options
author | Kyle McMartin <kyle@parisc-linux.org> | 2006-08-13 22:25:45 -0400 |
---|---|---|
committer | Matthew Wilcox <willy@parisc-linux.org> | 2006-10-04 08:45:59 -0400 |
commit | 5cfe87d3f543d05a84a509d232330261f1b7bccf (patch) | |
tree | 9ff642a77258d18fac359c13359efd1d8155b605 /include/asm-parisc/irq.h | |
parent | 6f03495d65db4cecc8dc8f2266768f83af0c2710 (diff) |
[PARISC] Fix up parisc irq handling for genirq changes
Clean up enough to get things compiling again in the interim.
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'include/asm-parisc/irq.h')
-rw-r--r-- | include/asm-parisc/irq.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-parisc/irq.h b/include/asm-parisc/irq.h index 5cae260615a2..6e29cfa2812d 100644 --- a/include/asm-parisc/irq.h +++ b/include/asm-parisc/irq.h | |||
@@ -31,7 +31,7 @@ static __inline__ int irq_canonicalize(int irq) | |||
31 | return (irq == 2) ? 9 : irq; | 31 | return (irq == 2) ? 9 : irq; |
32 | } | 32 | } |
33 | 33 | ||
34 | struct hw_interrupt_type; | 34 | struct irq_chip; |
35 | 35 | ||
36 | /* | 36 | /* |
37 | * Some useful "we don't have to do anything here" handlers. Should | 37 | * Some useful "we don't have to do anything here" handlers. Should |
@@ -46,7 +46,7 @@ extern unsigned int txn_alloc_data(unsigned int); | |||
46 | extern unsigned long txn_alloc_addr(unsigned int); | 46 | extern unsigned long txn_alloc_addr(unsigned int); |
47 | extern unsigned long txn_affinity_addr(unsigned int irq, int cpu); | 47 | extern unsigned long txn_affinity_addr(unsigned int irq, int cpu); |
48 | 48 | ||
49 | extern int cpu_claim_irq(unsigned int irq, struct hw_interrupt_type *, void *); | 49 | extern int cpu_claim_irq(unsigned int irq, struct irq_chip *, void *); |
50 | extern int cpu_check_affinity(unsigned int irq, cpumask_t *dest); | 50 | extern int cpu_check_affinity(unsigned int irq, cpumask_t *dest); |
51 | 51 | ||
52 | /* soft power switch support (power.c) */ | 52 | /* soft power switch support (power.c) */ |