mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 06:31:52 +00:00
extcon: max77693: Fix uninitialised variable warning
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
This commit is contained in:
parent
f4bb5cb54e
commit
3bf742ffd4
@ -672,9 +672,10 @@ static int __devinit max77693_muic_probe(struct platform_device *pdev)
|
||||
info->max77693->muic,
|
||||
&max77693_muic_regmap_config);
|
||||
if (IS_ERR(info->max77693->regmap_muic)) {
|
||||
ret = PTR_ERR(info->max77693->regmap_muic);
|
||||
dev_err(max77693->dev,
|
||||
"failed to allocate register map: %d\n", ret);
|
||||
return PTR_ERR(info->max77693->regmap_muic);
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
platform_set_drvdata(pdev, info);
|
||||
|
Loading…
Reference in New Issue
Block a user