Browse Source

usb: usb-skeleton: 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>
Wolfram Sang 9 years ago
parent
commit
2bd07d3c21
1 changed files with 1 additions and 4 deletions
  1. 1 4
      drivers/usb/usb-skeleton.c

+ 1 - 4
drivers/usb/usb-skeleton.c

@@ -532,11 +532,8 @@ static int skel_probe(struct usb_interface *interface,
 				goto error;
 			}
 			dev->bulk_in_urb = usb_alloc_urb(0, GFP_KERNEL);
-			if (!dev->bulk_in_urb) {
-				dev_err(&interface->dev,
-					"Could not allocate bulk_in_urb\n");
+			if (!dev->bulk_in_urb)
 				goto error;
-			}
 		}
 
 		if (!dev->bulk_out_endpointAddr &&