diff options
author | Wolfram Sang <wsa-dev@sang-engineering.com> | 2016-08-11 18:04:00 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-08-24 09:26:20 -0300 |
commit | 2685b1d1d1cdd005c0c553632c4bf48d8b483722 (patch) | |
tree | 9c16b0555eb1d79464ca6291e18381b23440b2d0 /drivers/media/usb/stkwebcam | |
parent | 9d849287d512ffbe01cdd0da9c4c1e468f7f72d8 (diff) | |
download | talos-obmc-linux-2685b1d1d1cdd005c0c553632c4bf48d8b483722.tar.gz talos-obmc-linux-2685b1d1d1cdd005c0c553632c4bf48d8b483722.zip |
[media] media: usb: stkwebcam: stk-webcam: 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: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/usb/stkwebcam')
-rw-r--r-- | drivers/media/usb/stkwebcam/stk-webcam.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/media/usb/stkwebcam/stk-webcam.c b/drivers/media/usb/stkwebcam/stk-webcam.c index c21c4c004f97..db200c9d796d 100644 --- a/drivers/media/usb/stkwebcam/stk-webcam.c +++ b/drivers/media/usb/stkwebcam/stk-webcam.c @@ -452,10 +452,8 @@ static int stk_prepare_iso(struct stk_camera *dev) STK_ERROR("isobuf data already allocated\n"); if (dev->isobufs[i].urb == NULL) { urb = usb_alloc_urb(ISO_FRAMES_PER_DESC, GFP_KERNEL); - if (urb == NULL) { - STK_ERROR("Failed to allocate URB %d\n", i); + if (urb == NULL) goto isobufs_out; - } dev->isobufs[i].urb = urb; } else { STK_ERROR("Killing URB\n"); |