diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2018-01-15 14:48:57 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2018-05-16 09:21:48 +0100 |
commit | 6733f64f8f9c3b55138e83122c2c1927d22b0524 (patch) | |
tree | 1be15d56dadc482904b3322238ba2e3cac11d904 /drivers/mfd | |
parent | f01b90b2c7d6e631c9a0eedef408a814cba0dabe (diff) | |
download | linux-6733f64f8f9c3b55138e83122c2c1927d22b0524.tar.gz linux-6733f64f8f9c3b55138e83122c2c1927d22b0524.tar.bz2 linux-6733f64f8f9c3b55138e83122c2c1927d22b0524.zip |
mfd: rc5t583: Delete error message for a failed memory allocation
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>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/rc5t583.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mfd/rc5t583.c b/drivers/mfd/rc5t583.c index d12243d5ecb8..411dba636a53 100644 --- a/drivers/mfd/rc5t583.c +++ b/drivers/mfd/rc5t583.c @@ -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); |