kmalloc will print enough information in case of failure.

Signed-off-by: Wolfram Sang <[email protected]>
---
 drivers/usb/usb-skeleton.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/drivers/usb/usb-skeleton.c b/drivers/usb/usb-skeleton.c
index 545d09b8081d55..89e02a7529b785 100644
--- a/drivers/usb/usb-skeleton.c
+++ b/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 &&
-- 
2.8.1

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to