aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/parisc/gsc.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2009-06-10 19:56:04 +0000
committerKyle McMartin <kyle@mcmartin.ca>2009-07-03 03:34:08 +0000
commitdfe07565021959f0f646e9e775810c1bfbe0f6d6 (patch)
tree76de79da47be7d42b20523a4212841912e4a2ed5 /drivers/parisc/gsc.h
parentparisc: fix irq compile bugs in arch/parisc/kernel/irq.c (diff)
downloadlinux-dev-dfe07565021959f0f646e9e775810c1bfbe0f6d6.tar.xz
linux-dev-dfe07565021959f0f646e9e775810c1bfbe0f6d6.zip
parisc: remove obsolete hw_interrupt_type
The defines and typedefs (hw_interrupt_type, no_irq_type, irq_desc_t) have been kept around for migration reasons. After more than two years it's time to remove them finally. This patch cleans up one of the remaining users. When all such patches hit mainline we can remove the defines and typedefs finally. Impact: cleanup Convert the last remaining users to struct irq_chip and remove the define. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'drivers/parisc/gsc.h')
-rw-r--r--drivers/parisc/gsc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parisc/gsc.h b/drivers/parisc/gsc.h
index 762a1babad60..b9d7bfb68e24 100644
--- a/drivers/parisc/gsc.h
+++ b/drivers/parisc/gsc.h
@@ -38,7 +38,7 @@ struct gsc_asic {
int gsc_common_setup(struct parisc_device *parent, struct gsc_asic *gsc_asic);
int gsc_alloc_irq(struct gsc_irq *dev); /* dev needs an irq */
int gsc_claim_irq(struct gsc_irq *dev, int irq); /* dev needs this irq */
-int gsc_assign_irq(struct hw_interrupt_type *type, void *data);
+int gsc_assign_irq(struct irq_chip *type, void *data);
int gsc_find_local_irq(unsigned int irq, int *global_irq, int limit);
void gsc_fixup_irqs(struct parisc_device *parent, void *ctrl,
void (*choose)(struct parisc_device *child, void *ctrl));