提交 c6a4c9fc 编写于 作者: W Wolfram Sang 提交者: Greg Kroah-Hartman

uwb: hwa-rc: don't print error when allocating urb fails

kmalloc will print enough information in case of failure.
Signed-off-by: NWolfram Sang <wsa-dev@sang-engineering.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 c1da59da
...@@ -701,10 +701,8 @@ static int hwarc_neep_init(struct uwb_rc *rc) ...@@ -701,10 +701,8 @@ static int hwarc_neep_init(struct uwb_rc *rc)
goto error_rd_buffer; goto error_rd_buffer;
} }
hwarc->neep_urb = usb_alloc_urb(0, GFP_KERNEL); hwarc->neep_urb = usb_alloc_urb(0, GFP_KERNEL);
if (hwarc->neep_urb == NULL) { if (hwarc->neep_urb == NULL)
dev_err(dev, "Unable to allocate notification URB\n");
goto error_urb_alloc; goto error_urb_alloc;
}
usb_fill_int_urb(hwarc->neep_urb, usb_dev, usb_fill_int_urb(hwarc->neep_urb, usb_dev,
usb_rcvintpipe(usb_dev, epd->bEndpointAddress), usb_rcvintpipe(usb_dev, epd->bEndpointAddress),
hwarc->rd_buffer, PAGE_SIZE, hwarc->rd_buffer, PAGE_SIZE,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册