diff options
author | Wolfram Sang <wsa-dev@sang-engineering.com> | 2016-08-11 17:04:02 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-08-24 08:26:58 -0400 |
commit | 7c240e8c0f029402b2a9948d7071cf1633bdea99 (patch) | |
tree | ef5bd43f7ff927ad0a9a6a94496e946134cf783c | |
parent | b7eca8d43c6ea7054dd8f412158c7e465610d424 (diff) |
[media] media: usb: tm6000: tm6000-video: 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>
-rw-r--r-- | drivers/media/usb/tm6000/tm6000-video.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/media/usb/tm6000/tm6000-video.c b/drivers/media/usb/tm6000/tm6000-video.c index fa5e8bda2ae4..dee7e7d3d47d 100644 --- a/drivers/media/usb/tm6000/tm6000-video.c +++ b/drivers/media/usb/tm6000/tm6000-video.c | |||
@@ -635,7 +635,6 @@ static int tm6000_prepare_isoc(struct tm6000_core *dev) | |||
635 | for (i = 0; i < dev->isoc_ctl.num_bufs; i++) { | 635 | for (i = 0; i < dev->isoc_ctl.num_bufs; i++) { |
636 | urb = usb_alloc_urb(max_packets, GFP_KERNEL); | 636 | urb = usb_alloc_urb(max_packets, GFP_KERNEL); |
637 | if (!urb) { | 637 | if (!urb) { |
638 | tm6000_err("cannot alloc isoc_ctl.urb %i\n", i); | ||
639 | tm6000_uninit_isoc(dev); | 638 | tm6000_uninit_isoc(dev); |
640 | usb_free_urb(urb); | 639 | usb_free_urb(urb); |
641 | return -ENOMEM; | 640 | return -ENOMEM; |