Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6733f64f authored by Markus Elfring's avatar Markus Elfring Committed by Lee Jones
Browse files

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: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent f01b90b2
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
@@ -259,10 +259,8 @@ static int rc5t583_i2c_probe(struct i2c_client *i2c,
	}
	}


	rc5t583 = devm_kzalloc(&i2c->dev, sizeof(struct rc5t583), GFP_KERNEL);
	rc5t583 = devm_kzalloc(&i2c->dev, sizeof(struct rc5t583), GFP_KERNEL);
	if (!rc5t583) {
	if (!rc5t583)
		dev_err(&i2c->dev, "Memory allocation failed\n");
		return -ENOMEM;
		return -ENOMEM;
	}


	rc5t583->dev = &i2c->dev;
	rc5t583->dev = &i2c->dev;
	i2c_set_clientdata(i2c, rc5t583);
	i2c_set_clientdata(i2c, rc5t583);