Commit ca47d8f3 authored by Wolfram Sang's avatar Wolfram Sang Committed by Greg Kroah-Hartman

staging: most: hdm-usb: hdm_usb: don't print error when allocating urb fails

kmalloc will print enough information in case of failure.
Signed-off-by: default avatarWolfram Sang <wsa-dev@sang-engineering.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 86b368db
......@@ -650,10 +650,8 @@ static int hdm_enqueue(struct most_interface *iface, int channel,
return -ENODEV;
urb = usb_alloc_urb(NO_ISOCHRONOUS_URB, GFP_ATOMIC);
if (!urb) {
dev_err(dev, "Failed to allocate URB\n");
if (!urb)
return -ENOMEM;
}
anchor = kzalloc(sizeof(*anchor), GFP_ATOMIC);
if (!anchor) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment