ipack: Delete an error message for a failed memory allocation in ipack_device_read_id()
authorMarkus Elfring <elfring@users.sourceforge.net>
Mon, 15 May 2017 09:08:09 +0000 (11:08 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 May 2017 14:59:06 +0000 (16:59 +0200)
Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Acked-by: Samuel Iglesias Gonsálvez <siglesias@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/ipack/ipack.c

index 1210244..575c4f2 100644 (file)
@@ -402,7 +402,6 @@ static int ipack_device_read_id(struct ipack_device *dev)
         * ID ROM contents */
        dev->id = kmalloc(dev->id_avail, GFP_KERNEL);
        if (!dev->id) {
-               dev_err(&dev->dev, "dev->id alloc failed.\n");
                ret = -ENOMEM;
                goto out;
        }