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/irda/irda-usb.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/irda/irda-usb.c')
-rw-r--r-- | drivers/net/irda/irda-usb.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/irda/irda-usb.c b/drivers/net/irda/irda-usb.c index 383cef1f5999..14bda765c2fa 100644 --- a/drivers/net/irda/irda-usb.c +++ b/drivers/net/irda/irda-usb.c | |||
@@ -114,9 +114,9 @@ static void irda_usb_change_speed_xbofs(struct irda_usb_cb *self); | |||
114 | static int irda_usb_hard_xmit(struct sk_buff *skb, struct net_device *dev); | 114 | static int irda_usb_hard_xmit(struct sk_buff *skb, struct net_device *dev); |
115 | static int irda_usb_open(struct irda_usb_cb *self); | 115 | static int irda_usb_open(struct irda_usb_cb *self); |
116 | static void irda_usb_close(struct irda_usb_cb *self); | 116 | static void irda_usb_close(struct irda_usb_cb *self); |
117 | static void speed_bulk_callback(struct urb *urb, struct pt_regs *regs); | 117 | static void speed_bulk_callback(struct urb *urb); |
118 | static void write_bulk_callback(struct urb *urb, struct pt_regs *regs); | 118 | static void write_bulk_callback(struct urb *urb); |
119 | static void irda_usb_receive(struct urb *urb, struct pt_regs *regs); | 119 | static void irda_usb_receive(struct urb *urb); |
120 | static void irda_usb_rx_defer_expired(unsigned long data); | 120 | static void irda_usb_rx_defer_expired(unsigned long data); |
121 | static int irda_usb_net_open(struct net_device *dev); | 121 | static int irda_usb_net_open(struct net_device *dev); |
122 | static int irda_usb_net_close(struct net_device *dev); | 122 | static int irda_usb_net_close(struct net_device *dev); |
@@ -343,7 +343,7 @@ static void irda_usb_change_speed_xbofs(struct irda_usb_cb *self) | |||
343 | * Speed URB callback | 343 | * Speed URB callback |
344 | * Now, we can only get called for the speed URB. | 344 | * Now, we can only get called for the speed URB. |
345 | */ | 345 | */ |
346 | static void speed_bulk_callback(struct urb *urb, struct pt_regs *regs) | 346 | static void speed_bulk_callback(struct urb *urb) |
347 | { | 347 | { |
348 | struct irda_usb_cb *self = urb->context; | 348 | struct irda_usb_cb *self = urb->context; |
349 | 349 | ||
@@ -562,7 +562,7 @@ drop: | |||
562 | /* | 562 | /* |
563 | * Note : this function will be called only for tx_urb... | 563 | * Note : this function will be called only for tx_urb... |
564 | */ | 564 | */ |
565 | static void write_bulk_callback(struct urb *urb, struct pt_regs *regs) | 565 | static void write_bulk_callback(struct urb *urb) |
566 | { | 566 | { |
567 | unsigned long flags; | 567 | unsigned long flags; |
568 | struct sk_buff *skb = urb->context; | 568 | struct sk_buff *skb = urb->context; |
@@ -809,7 +809,7 @@ static void irda_usb_submit(struct irda_usb_cb *self, struct sk_buff *skb, struc | |||
809 | * Called by the USB subsystem when a frame has been received | 809 | * Called by the USB subsystem when a frame has been received |
810 | * | 810 | * |
811 | */ | 811 | */ |
812 | static void irda_usb_receive(struct urb *urb, struct pt_regs *regs) | 812 | static void irda_usb_receive(struct urb *urb) |
813 | { | 813 | { |
814 | struct sk_buff *skb = (struct sk_buff *) urb->context; | 814 | struct sk_buff *skb = (struct sk_buff *) urb->context; |
815 | struct irda_usb_cb *self; | 815 | struct irda_usb_cb *self; |