From: Markus Elfring <[email protected]>
Date: Fri, 25 Aug 2017 20:54:16 +0200

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 <[email protected]>
---
 drivers/scsi/scsi_devinfo.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/scsi/scsi_devinfo.c b/drivers/scsi/scsi_devinfo.c
index 28fea83ae2fe..3009934b95a7 100644
--- a/drivers/scsi/scsi_devinfo.c
+++ b/drivers/scsi/scsi_devinfo.c
@@ -369,10 +369,8 @@ int scsi_dev_info_list_add_keyed(int compatible, char 
*vendor, char *model,
                return PTR_ERR(devinfo_table);
 
        devinfo = kmalloc(sizeof(*devinfo), GFP_KERNEL);
-       if (!devinfo) {
-               printk(KERN_ERR "%s: no memory\n", __func__);
+       if (!devinfo)
                return -ENOMEM;
-       }
 
        scsi_strcpy_devinfo("vendor", devinfo->vendor, sizeof(devinfo->vendor),
                            vendor, compatible);
-- 
2.14.0

Reply via email to