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 544d41fe9b9..957d4ad316f 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)  	return result;  } -static void kaweth_usb_receive(struct urb *, struct pt_regs *regs); +static void kaweth_usb_receive(struct urb *);  static int kaweth_resubmit_rx_urb(struct kaweth_device *, gfp_t);  /**************************************************************** @@ -500,7 +500,7 @@ static void kaweth_resubmit_int_urb(struct kaweth_device *kaweth, gfp_t mf)  				kaweth->dev->devpath, status);  } -static void int_callback(struct urb *u, struct pt_regs *regs) +static void int_callback(struct urb *u)  {  	struct kaweth_device *kaweth = u->context;  	int act_state; @@ -581,7 +581,7 @@ static void kaweth_async_set_rx_mode(struct kaweth_device *kaweth);  /****************************************************************   *     kaweth_usb_receive   ****************************************************************/ -static void kaweth_usb_receive(struct urb *urb, struct pt_regs *regs) +static void kaweth_usb_receive(struct urb *urb)  {  	struct kaweth_device *kaweth = urb->context;  	struct net_device *net = kaweth->net; @@ -725,7 +725,7 @@ static struct ethtool_ops ops = {  /****************************************************************   *     kaweth_usb_transmit_complete   ****************************************************************/ -static void kaweth_usb_transmit_complete(struct urb *urb, struct pt_regs *regs) +static void kaweth_usb_transmit_complete(struct urb *urb)  {  	struct kaweth_device *kaweth = urb->context;  	struct sk_buff *skb = kaweth->tx_skb; @@ -1154,7 +1154,7 @@ struct usb_api_data {  /*-------------------------------------------------------------------*   * completion handler for compatibility wrappers (sync control/bulk) *   *-------------------------------------------------------------------*/ -static void usb_api_blocking_completion(struct urb *urb, struct pt_regs *regs) +static void usb_api_blocking_completion(struct urb *urb)  {          struct usb_api_data *awd = (struct usb_api_data *)urb->context;  |