diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-05 19:32:01 -0400 |
commit | 44aefd2706bb6f5b65ba2c38cd89e7609e2b43d3 (patch) | |
tree | 93824f573767da634fbc82c388b6d33cc454212b /drivers/atm/he.c | |
parent | c1a26e7d40fb814716950122353a1a556844286b (diff) | |
parent | 7d12e780e003f93433d49ce78cfedf4b4c52adc5 (diff) |
Merge git://git.infradead.org/~dhowells/irq-2.6
* git://git.infradead.org/~dhowells/irq-2.6:
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
IRQ: Typedef the IRQ handler function type
IRQ: Typedef the IRQ flow handler function type
Diffstat (limited to 'drivers/atm/he.c')
-rw-r--r-- | drivers/atm/he.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/atm/he.c b/drivers/atm/he.c index b22a9142b240..c7314a79da0f 100644 --- a/drivers/atm/he.c +++ b/drivers/atm/he.c | |||
@@ -109,7 +109,7 @@ static int he_open(struct atm_vcc *vcc); | |||
109 | static void he_close(struct atm_vcc *vcc); | 109 | static void he_close(struct atm_vcc *vcc); |
110 | static int he_send(struct atm_vcc *vcc, struct sk_buff *skb); | 110 | static int he_send(struct atm_vcc *vcc, struct sk_buff *skb); |
111 | static int he_ioctl(struct atm_dev *dev, unsigned int cmd, void __user *arg); | 111 | static int he_ioctl(struct atm_dev *dev, unsigned int cmd, void __user *arg); |
112 | static irqreturn_t he_irq_handler(int irq, void *dev_id, struct pt_regs *regs); | 112 | static irqreturn_t he_irq_handler(int irq, void *dev_id); |
113 | static void he_tasklet(unsigned long data); | 113 | static void he_tasklet(unsigned long data); |
114 | static int he_proc_read(struct atm_dev *dev,loff_t *pos,char *page); | 114 | static int he_proc_read(struct atm_dev *dev,loff_t *pos,char *page); |
115 | static int he_start(struct atm_dev *dev); | 115 | static int he_start(struct atm_dev *dev); |
@@ -2216,7 +2216,7 @@ he_tasklet(unsigned long data) | |||
2216 | } | 2216 | } |
2217 | 2217 | ||
2218 | static irqreturn_t | 2218 | static irqreturn_t |
2219 | he_irq_handler(int irq, void *dev_id, struct pt_regs *regs) | 2219 | he_irq_handler(int irq, void *dev_id) |
2220 | { | 2220 | { |
2221 | unsigned long flags; | 2221 | unsigned long flags; |
2222 | struct he_dev *he_dev = (struct he_dev * )dev_id; | 2222 | struct he_dev *he_dev = (struct he_dev * )dev_id; |