diff options
Diffstat (limited to 'drivers/usb/net/kaweth.c')
-rw-r--r-- | drivers/usb/net/kaweth.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/usb/net/kaweth.c b/drivers/usb/net/kaweth.c index 544d41fe9b92..957d4ad316f9 100644 --- a/drivers/usb/net/kaweth.c +++ b/drivers/usb/net/kaweth.c | |||
@@ -475,7 +475,7 @@ static int kaweth_reset(struct kaweth_device *kaweth) | |||
475 | return result; | 475 | return result; |
476 | } | 476 | } |
477 | 477 | ||
478 | static void kaweth_usb_receive(struct urb *, struct pt_regs *regs); | 478 | static void kaweth_usb_receive(struct urb *); |
479 | static int kaweth_resubmit_rx_urb(struct kaweth_device *, gfp_t); | 479 | static int kaweth_resubmit_rx_urb(struct kaweth_device *, gfp_t); |
480 | 480 | ||
481 | /**************************************************************** | 481 | /**************************************************************** |
@@ -500,7 +500,7 @@ static void kaweth_resubmit_int_urb(struct kaweth_device *kaweth, gfp_t mf) | |||
500 | kaweth->dev->devpath, status); | 500 | kaweth->dev->devpath, status); |
501 | } | 501 | } |
502 | 502 | ||
503 | static void int_callback(struct urb *u, struct pt_regs *regs) | 503 | static void int_callback(struct urb *u) |
504 | { | 504 | { |
505 | struct kaweth_device *kaweth = u->context; | 505 | struct kaweth_device *kaweth = u->context; |
506 | int act_state; | 506 | int act_state; |
@@ -581,7 +581,7 @@ static void kaweth_async_set_rx_mode(struct kaweth_device *kaweth); | |||
581 | /**************************************************************** | 581 | /**************************************************************** |
582 | * kaweth_usb_receive | 582 | * kaweth_usb_receive |
583 | ****************************************************************/ | 583 | ****************************************************************/ |
584 | static void kaweth_usb_receive(struct urb *urb, struct pt_regs *regs) | 584 | static void kaweth_usb_receive(struct urb *urb) |
585 | { | 585 | { |
586 | struct kaweth_device *kaweth = urb->context; | 586 | struct kaweth_device *kaweth = urb->context; |
587 | struct net_device *net = kaweth->net; | 587 | struct net_device *net = kaweth->net; |
@@ -725,7 +725,7 @@ static struct ethtool_ops ops = { | |||
725 | /**************************************************************** | 725 | /**************************************************************** |
726 | * kaweth_usb_transmit_complete | 726 | * kaweth_usb_transmit_complete |
727 | ****************************************************************/ | 727 | ****************************************************************/ |
728 | static void kaweth_usb_transmit_complete(struct urb *urb, struct pt_regs *regs) | 728 | static void kaweth_usb_transmit_complete(struct urb *urb) |
729 | { | 729 | { |
730 | struct kaweth_device *kaweth = urb->context; | 730 | struct kaweth_device *kaweth = urb->context; |
731 | struct sk_buff *skb = kaweth->tx_skb; | 731 | struct sk_buff *skb = kaweth->tx_skb; |
@@ -1154,7 +1154,7 @@ struct usb_api_data { | |||
1154 | /*-------------------------------------------------------------------* | 1154 | /*-------------------------------------------------------------------* |
1155 | * completion handler for compatibility wrappers (sync control/bulk) * | 1155 | * completion handler for compatibility wrappers (sync control/bulk) * |
1156 | *-------------------------------------------------------------------*/ | 1156 | *-------------------------------------------------------------------*/ |
1157 | static void usb_api_blocking_completion(struct urb *urb, struct pt_regs *regs) | 1157 | static void usb_api_blocking_completion(struct urb *urb) |
1158 | { | 1158 | { |
1159 | struct usb_api_data *awd = (struct usb_api_data *)urb->context; | 1159 | struct usb_api_data *awd = (struct usb_api_data *)urb->context; |
1160 | 1160 | ||