OSDN Git Service

mfd: htc-i2cpld: Delete error message for a failed memory allocation
authorMarkus Elfring <elfring@users.sourceforge.net>
Sun, 14 Jan 2018 21:02:16 +0000 (22:02 +0100)
committerLee Jones <lee.jones@linaro.org>
Wed, 16 May 2018 08:21:48 +0000 (09:21 +0100)
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: Lee Jones <lee.jones@linaro.org>
drivers/mfd/htc-i2cpld.c

index 3f9eee5..4bf8b77 100644 (file)
@@ -479,10 +479,8 @@ static int htcpld_setup_chips(struct platform_device *pdev)
        htcpld->nchips = pdata->num_chip;
        htcpld->chip = devm_kzalloc(dev, sizeof(struct htcpld_chip) * htcpld->nchips,
                                    GFP_KERNEL);
-       if (!htcpld->chip) {
-               dev_warn(dev, "Unable to allocate memory for chips\n");
+       if (!htcpld->chip)
                return -ENOMEM;
-       }
 
        /* Add the chips as best we can */
        for (i = 0; i < htcpld->nchips; i++) {