[media] media: usb: em28xx: em28xx-audio: don't print error when allocating urb fails
authorWolfram Sang <wsa-dev@sang-engineering.com>
Thu, 11 Aug 2016 21:03:49 +0000 (18:03 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Wed, 24 Aug 2016 11:50:33 +0000 (08:50 -0300)
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>
drivers/media/usb/em28xx/em28xx-audio.c

index 49a5f95..78f3687 100644 (file)
@@ -850,7 +850,6 @@ static int em28xx_audio_urb_init(struct em28xx *dev)
 
                urb = usb_alloc_urb(npackets, GFP_ATOMIC);
                if (!urb) {
-                       em28xx_errdev("usb_alloc_urb failed!\n");
                        em28xx_audio_free_urb(dev);
                        return -ENOMEM;
                }