net: usb: usbnet: don't print error when allocating urb fails
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>
This commit is contained in:
Родитель
d7c4e84e34
Коммит
ef6cd1301e
|
@ -2062,11 +2062,8 @@ int usbnet_write_cmd_async(struct usbnet *dev, u8 cmd, u8 reqtype,
|
||||||
cmd, reqtype, value, index, size);
|
cmd, reqtype, value, index, size);
|
||||||
|
|
||||||
urb = usb_alloc_urb(0, GFP_ATOMIC);
|
urb = usb_alloc_urb(0, GFP_ATOMIC);
|
||||||
if (!urb) {
|
if (!urb)
|
||||||
netdev_err(dev->net, "Error allocating URB in"
|
|
||||||
" %s!\n", __func__);
|
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
|
||||||
|
|
||||||
if (data) {
|
if (data) {
|
||||||
buf = kmemdup(data, size, GFP_ATOMIC);
|
buf = kmemdup(data, size, GFP_ATOMIC);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче