diff options
author | David Howells <dhowells@redhat.com> | 2006-10-05 13:06:34 +0100 |
---|---|---|
committer | David Howells <dhowells@warthog.cambridge.redhat.com> | 2006-10-05 13:28:27 +0100 |
commit | da482792a6d1a3fbaaa25fae867b343fb4db3246 (patch) | |
tree | 138c187e669bbaf997780a999299fbc977568e1c /include | |
parent | 57a58a9435aef3e0342ba4b2c97e0ddfea6f2c7f (diff) | |
download | linux-3.10-da482792a6d1a3fbaaa25fae867b343fb4db3246.tar.gz linux-3.10-da482792a6d1a3fbaaa25fae867b343fb4db3246.tar.bz2 linux-3.10-da482792a6d1a3fbaaa25fae867b343fb4db3246.zip |
IRQ: Typedef the IRQ handler function type
Typedef the IRQ handler function type.
Signed-Off-By: David Howells <dhowells@redhat.com>
(cherry picked from 1356d1e5fd256997e3d3dce0777ab787d0515c7a commit)
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/interrupt.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 1f97e3d9263..19782350dcc 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h @@ -64,8 +64,10 @@ #define SA_TRIGGER_RISING IRQF_TRIGGER_RISING #define SA_TRIGGER_MASK IRQF_TRIGGER_MASK +typedef irqreturn_t (*irq_handler_t)(int, void *, struct pt_regs *); + struct irqaction { - irqreturn_t (*handler)(int, void *, struct pt_regs *); + irq_handler_t handler; unsigned long flags; cpumask_t mask; const char *name; @@ -76,8 +78,7 @@ struct irqaction { }; extern irqreturn_t no_action(int cpl, void *dev_id, struct pt_regs *regs); -extern int request_irq(unsigned int, - irqreturn_t (*handler)(int, void *, struct pt_regs *), +extern int request_irq(unsigned int, irq_handler_t handler, unsigned long, const char *, void *); extern void free_irq(unsigned int, void *); |