net: usb: usbnet: don't print error when allocating urb fails
authorWolfram Sang <wsa-dev@sang-engineering.com>
Thu, 11 Aug 2016 21:05:28 +0000 (23:05 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sat, 13 Aug 2016 21:53:40 +0000 (14:53 -0700)
kmalloc will print enough information in case of failure.

Signed-off-by: Wolfram Sang <wsa-dev@sang-engineering.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/usbnet.c

index 3bfb592093263bef36c4fa88de4fed60dbbb1ac1..d5071e364d40e1dba629a887d67a07c4ff66825c 100644 (file)
@@ -2062,11 +2062,8 @@ int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
                   cmd, reqtype, value, index, size);
 
        urb = usb_alloc_urb(0, GFP_ATOMIC);
-       if (!urb) {
-               netdev_err(dev->net, "Error allocating URB in"
-                          " %s!\n", __func__);
+       if (!urb)
                goto fail;
-       }
 
        if (data) {
                buf = kmemdup(data, size, GFP_ATOMIC);
This page took 0.029794 seconds and 5 git commands to generate.