aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/usb/kaweth.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/usb/kaweth.c')
-rw-r--r--drivers/net/usb/kaweth.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/usb/kaweth.c b/drivers/net/usb/kaweth.c
index d6829db51b45..4f7a0106781e 100644
--- a/drivers/net/usb/kaweth.c
+++ b/drivers/net/usb/kaweth.c
@@ -832,7 +832,7 @@ static int kaweth_start_xmit(struct sk_buff *skb, struct net_device *net)
832 832
833 if((res = usb_submit_urb(kaweth->tx_urb, GFP_ATOMIC))) 833 if((res = usb_submit_urb(kaweth->tx_urb, GFP_ATOMIC)))
834 { 834 {
835 warn("kaweth failed tx_urb %d", res); 835 dev_warn(&net->dev, "kaweth failed tx_urb %d\n", res);
836skip: 836skip:
837 kaweth->stats.tx_errors++; 837 kaweth->stats.tx_errors++;
838 838
@@ -924,7 +924,7 @@ static void kaweth_tx_timeout(struct net_device *net)
924{ 924{
925 struct kaweth_device *kaweth = netdev_priv(net); 925 struct kaweth_device *kaweth = netdev_priv(net);
926 926
927 warn("%s: Tx timed out. Resetting.", net->name); 927 dev_warn(&net->dev, "%s: Tx timed out. Resetting.\n", net->name);
928 kaweth->stats.tx_errors++; 928 kaweth->stats.tx_errors++;
929 net->trans_start = jiffies; 929 net->trans_start = jiffies;
930 930
@@ -1209,7 +1209,7 @@ static void kaweth_disconnect(struct usb_interface *intf)
1209 1209
1210 usb_set_intfdata(intf, NULL); 1210 usb_set_intfdata(intf, NULL);
1211 if (!kaweth) { 1211 if (!kaweth) {
1212 warn("unregistering non-existant device"); 1212 dev_warn(&intf->dev, "unregistering non-existant device\n");
1213 return; 1213 return;
1214 } 1214 }
1215 netdev = kaweth->net; 1215 netdev = kaweth->net;
@@ -1269,7 +1269,7 @@ static int usb_start_wait_urb(struct urb *urb, int timeout, int* actual_length)
1269 1269
1270 if (!wait_event_timeout(awd.wqh, awd.done, timeout)) { 1270 if (!wait_event_timeout(awd.wqh, awd.done, timeout)) {
1271 // timeout 1271 // timeout
1272 warn("usb_control/bulk_msg: timeout"); 1272 dev_warn(&urb->dev->dev, "usb_control/bulk_msg: timeout\n");
1273 usb_kill_urb(urb); // remove urb safely 1273 usb_kill_urb(urb); // remove urb safely
1274 status = -ETIMEDOUT; 1274 status = -ETIMEDOUT;
1275 } 1275 }