forked from luck/tmp_suning_uos_patched
usb: misc: sisusbvga: sisusb: 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:
parent
da4e20ffce
commit
843ac1975d
@ -3084,7 +3084,6 @@ static int sisusb_probe(struct usb_interface *intf,
|
||||
/* Allocate URBs */
|
||||
sisusb->sisurbin = usb_alloc_urb(0, GFP_KERNEL);
|
||||
if (!sisusb->sisurbin) {
|
||||
dev_err(&sisusb->sisusb_dev->dev, "Failed to allocate URBs\n");
|
||||
retval = -ENOMEM;
|
||||
goto error_3;
|
||||
}
|
||||
@ -3093,8 +3092,6 @@ static int sisusb_probe(struct usb_interface *intf,
|
||||
for (i = 0; i < sisusb->numobufs; i++) {
|
||||
sisusb->sisurbout[i] = usb_alloc_urb(0, GFP_KERNEL);
|
||||
if (!sisusb->sisurbout[i]) {
|
||||
dev_err(&sisusb->sisusb_dev->dev,
|
||||
"Failed to allocate URBs\n");
|
||||
retval = -ENOMEM;
|
||||
goto error_4;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user