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/net/3c501.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/net/3c501.c')
-rw-r--r-- | drivers/net/3c501.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/3c501.c b/drivers/net/3c501.c index 1b82bccd8c71..11d170afa9c3 100644 --- a/drivers/net/3c501.c +++ b/drivers/net/3c501.c | |||
@@ -496,7 +496,6 @@ static int el_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
496 | * el_interrupt: | 496 | * el_interrupt: |
497 | * @irq: Interrupt number | 497 | * @irq: Interrupt number |
498 | * @dev_id: The 3c501 that burped | 498 | * @dev_id: The 3c501 that burped |
499 | * @regs: Register data (surplus to our requirements) | ||
500 | * | 499 | * |
501 | * Handle the ether interface interrupts. The 3c501 needs a lot more | 500 | * Handle the ether interface interrupts. The 3c501 needs a lot more |
502 | * hand holding than most cards. In particular we get a transmit interrupt | 501 | * hand holding than most cards. In particular we get a transmit interrupt |
@@ -515,7 +514,7 @@ static int el_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
515 | * TCP window. | 514 | * TCP window. |
516 | */ | 515 | */ |
517 | 516 | ||
518 | static irqreturn_t el_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 517 | static irqreturn_t el_interrupt(int irq, void *dev_id) |
519 | { | 518 | { |
520 | struct net_device *dev = dev_id; | 519 | struct net_device *dev = dev_id; |
521 | struct net_local *lp; | 520 | struct net_local *lp; |