diff options
Diffstat (limited to 'include/linux/interrupt.h')
-rw-r--r-- | include/linux/interrupt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 19782350dcc8..5b83e7b59621 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -64,7 +64,7 @@ | |||
64 | #define SA_TRIGGER_RISING IRQF_TRIGGER_RISING | 64 | #define SA_TRIGGER_RISING IRQF_TRIGGER_RISING |
65 | #define SA_TRIGGER_MASK IRQF_TRIGGER_MASK | 65 | #define SA_TRIGGER_MASK IRQF_TRIGGER_MASK |
66 | 66 | ||
67 | typedef irqreturn_t (*irq_handler_t)(int, void *, struct pt_regs *); | 67 | typedef irqreturn_t (*irq_handler_t)(int, void *); |
68 | 68 | ||
69 | struct irqaction { | 69 | struct irqaction { |
70 | irq_handler_t handler; | 70 | irq_handler_t handler; |
@@ -77,7 +77,7 @@ struct irqaction { | |||
77 | struct proc_dir_entry *dir; | 77 | struct proc_dir_entry *dir; |
78 | }; | 78 | }; |
79 | 79 | ||
80 | extern irqreturn_t no_action(int cpl, void *dev_id, struct pt_regs *regs); | 80 | extern irqreturn_t no_action(int cpl, void *dev_id); |
81 | extern int request_irq(unsigned int, irq_handler_t handler, | 81 | extern int request_irq(unsigned int, irq_handler_t handler, |
82 | unsigned long, const char *, void *); | 82 | unsigned long, const char *, void *); |
83 | extern void free_irq(unsigned int, void *); | 83 | extern void free_irq(unsigned int, void *); |