From: Markus Elfring <[email protected]>
Date: Tue, 16 Jan 2018 08:52:27 +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 <[email protected]>
---
 drivers/mfd/smsc-ece1099.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/mfd/smsc-ece1099.c b/drivers/mfd/smsc-ece1099.c
index 93a8297de52a..b9d96651cc0d 100644
--- a/drivers/mfd/smsc-ece1099.c
+++ b/drivers/mfd/smsc-ece1099.c
@@ -39,10 +39,8 @@ static int smsc_i2c_probe(struct i2c_client *i2c,
 
        smsc = devm_kzalloc(&i2c->dev, sizeof(struct smsc),
                                GFP_KERNEL);
-       if (!smsc) {
-               dev_err(&i2c->dev, "smsc mfd driver memory allocation 
failed\n");
+       if (!smsc)
                return -ENOMEM;
-       }
 
        smsc->regmap = devm_regmap_init_i2c(i2c, &smsc_regmap_config);
        if (IS_ERR(smsc->regmap))
-- 
2.15.1

Reply via email to