]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
mfd: rc5t583: Delete error message for a failed memory allocation
authorMarkus Elfring <elfring@users.sourceforge.net>
Mon, 15 Jan 2018 13:48:57 +0000 (14:48 +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/rc5t583.c

index d12243d5ecb809b064be189d9db9b22e281336e0..411dba636a5357b4d1493e3721c4ec314829129d 100644 (file)
@@ -259,10 +259,8 @@ static int rc5t583_i2c_probe(struct i2c_client *i2c,
        }
 
        rc5t583 = devm_kzalloc(&i2c->dev, sizeof(struct rc5t583), GFP_KERNEL);
-       if (!rc5t583) {
-               dev_err(&i2c->dev, "Memory allocation failed\n");
+       if (!rc5t583)
                return -ENOMEM;
-       }
 
        rc5t583->dev = &i2c->dev;
        i2c_set_clientdata(i2c, rc5t583);