]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
[media] media: imon: delete an error message for a failed memory allocation
authorMarkus Elfring <elfring@users.sourceforge.net>
Tue, 29 Aug 2017 10:40:07 +0000 (07:40 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Wed, 4 Oct 2017 18:09:58 +0000 (15:09 -0300)
Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/rc/imon.c

index b93dc6e1f1bf5a2efafbc9d25935785a03086f06..188cf1b4ebb1cb9f1d56e6e9162274d57f945e38 100644 (file)
@@ -2311,10 +2311,9 @@ static struct imon_context *imon_init_intf0(struct usb_interface *intf,
        int ret = -ENOMEM;
 
        ictx = kzalloc(sizeof(struct imon_context), GFP_KERNEL);
-       if (!ictx) {
-               dev_err(dev, "%s: kzalloc failed for context", __func__);
+       if (!ictx)
                goto exit;
-       }
+
        rx_urb = usb_alloc_urb(0, GFP_KERNEL);
        if (!rx_urb)
                goto rx_urb_alloc_failed;