提交 b452d7b6 编写于 作者: J Javier Martinez Canillas 提交者: Lee Jones

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: NJavier Martinez Canillas <javier.martinez@collabora.co.uk>
Signed-off-by: NLee Jones <lee.jones@linaro.org>
上级 ede04c61
......@@ -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,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册