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

Commit b452d7b6 authored by Javier Martinez Canillas's avatar Javier Martinez Canillas Committed by Lee Jones
Browse files

mfd: max77686: Return correct error when pdata isn't found



When platform data is not found an -EIO (I/O error) code is returned.
This doesn't seem to be the correct error so better return -EINVAL
(Invalid argument) which is what most drivers do in this case.

Signed-off-by: default avatarJavier Martinez Canillas <javier.martinez@collabora.co.uk>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent ede04c61
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ static int max77686_i2c_probe(struct i2c_client *i2c,

	if (!pdata) {
		dev_err(&i2c->dev, "No platform data found.\n");
		return -EIO;
		return -EINVAL;
	}

	max77686 = devm_kzalloc(&i2c->dev,