diff options
author | Wolfram Sang <wsa-dev@sang-engineering.com> | 2016-08-11 23:05:29 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-08-13 14:53:40 -0700 |
commit | aa38b885e52149cd0726e09c857b65740824d755 (patch) | |
tree | ef87a9383375f83f939ea9df2606b897a26b769d /drivers/net/wimax | |
parent | ef6cd1301e06e0a5de24938b92c5859d5021ea5d (diff) |
net: wimax: i2400m: usb-notif: 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>
Diffstat (limited to 'drivers/net/wimax')
-rw-r--r-- | drivers/net/wimax/i2400m/usb-notif.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wimax/i2400m/usb-notif.c b/drivers/net/wimax/i2400m/usb-notif.c index fc1355d98bc6..5d429f816125 100644 --- a/drivers/net/wimax/i2400m/usb-notif.c +++ b/drivers/net/wimax/i2400m/usb-notif.c @@ -206,7 +206,6 @@ int i2400mu_notification_setup(struct i2400mu *i2400mu) i2400mu->notif_urb = usb_alloc_urb(0, GFP_KERNEL); if (!i2400mu->notif_urb) { ret = -ENOMEM; - dev_err(dev, "notification: cannot allocate URB\n"); goto error_alloc_urb; } epd = usb_get_epd(i2400mu->usb_iface, |