regulator: virtual: use dev_err_probe()
Bugzilla: http://bugzilla.redhat.com/2071777 commit 75c3543e39f0c94644eac5965b3efe50c2c5c39d Author: Vincent Whitchurch <vincent.whitchurch@axis.com> Date: Tue Mar 1 12:18:29 2022 +0100 regulator: virtual: use dev_err_probe() Use dev_err_probe() to avoid printing spurious warnings on probe deferral. Signed-off-by: Vincent Whitchurch <vincent.whitchurch@axis.com> Link: https://lore.kernel.org/r/20220301111831.3742383-2-vincent.whitchurch@axis.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Steve Best <sbest@redhat.com>
This commit is contained in:
parent
5c7de34bf6
commit
aab9d72273
|
@ -295,12 +295,10 @@ static int regulator_virtual_probe(struct platform_device *pdev)
|
|||
mutex_init(&drvdata->lock);
|
||||
|
||||
drvdata->regulator = devm_regulator_get(&pdev->dev, reg_id);
|
||||
if (IS_ERR(drvdata->regulator)) {
|
||||
ret = PTR_ERR(drvdata->regulator);
|
||||
dev_err(&pdev->dev, "Failed to obtain supply '%s': %d\n",
|
||||
reg_id, ret);
|
||||
return ret;
|
||||
}
|
||||
if (IS_ERR(drvdata->regulator))
|
||||
return dev_err_probe(&pdev->dev, PTR_ERR(drvdata->regulator),
|
||||
"Failed to obtain supply '%s'\n",
|
||||
reg_id);
|
||||
|
||||
ret = sysfs_create_group(&pdev->dev.kobj,
|
||||
®ulator_virtual_attr_group);
|
||||
|
|
Loading…
Reference in New Issue