usb: misc: lvstest: 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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Wolfram Sang 2016-08-11 23:14:42 +02:00 committed by Greg Kroah-Hartman
parent a131f41f5b
commit da4e20ffce
1 changed files with 1 additions and 3 deletions

View File

@ -395,10 +395,8 @@ static int lvs_rh_probe(struct usb_interface *intf,
/* submit urb to poll interrupt endpoint */
lvs->urb = usb_alloc_urb(0, GFP_KERNEL);
if (!lvs->urb) {
dev_err(&intf->dev, "couldn't allocate lvs urb\n");
if (!lvs->urb)
return -ENOMEM;
}
INIT_WORK(&lvs->rh_work, lvs_rh_work);