OSDN Git Service

mfd: tps80031: Delete an error message for a failed memory allocation in tps80031_probe()
authorMarkus Elfring <elfring@users.sourceforge.net>
Fri, 9 Mar 2018 08:45:13 +0000 (09:45 +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/tps80031.c

index 0812df3..608c7f7 100644 (file)
@@ -431,10 +431,8 @@ static int tps80031_probe(struct i2c_client *client,
        }
 
        tps80031 = devm_kzalloc(&client->dev, sizeof(*tps80031), GFP_KERNEL);
-       if (!tps80031) {
-               dev_err(&client->dev, "Malloc failed for tps80031\n");
+       if (!tps80031)
                return -ENOMEM;
-       }
 
        for (i = 0; i < TPS80031_NUM_SLAVES; i++) {
                if (tps80031_slave_address[i] == client->addr)