diff options
author | Mark Brown <broonie@kernel.org> | 2020-03-24 17:33:09 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-03-24 17:33:09 +0000 |
commit | 24bd2afda8ce633385a3c96aa51181008d7252da (patch) | |
tree | c0ebae6e2a2481d6df18868d167198ef3a0705f7 /drivers/regulator/pwm-regulator.c | |
parent | bae4cb90541a5bb9625377f6edf94e3dd1b9bb96 (diff) | |
parent | 86332c343491c6d2228a1e0c80b1ea98a2653d20 (diff) |
Merge branch 'regulator-5.7' into regulator-next
Diffstat (limited to 'drivers/regulator/pwm-regulator.c')
-rw-r--r-- | drivers/regulator/pwm-regulator.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/regulator/pwm-regulator.c b/drivers/regulator/pwm-regulator.c index e74e11101fc1..638329bd0745 100644 --- a/drivers/regulator/pwm-regulator.c +++ b/drivers/regulator/pwm-regulator.c @@ -354,7 +354,11 @@ static int pwm_regulator_probe(struct platform_device *pdev) drvdata->pwm = devm_pwm_get(&pdev->dev, NULL); if (IS_ERR(drvdata->pwm)) { ret = PTR_ERR(drvdata->pwm); - dev_err(&pdev->dev, "Failed to get PWM: %d\n", ret); + if (ret == -EPROBE_DEFER) + dev_dbg(&pdev->dev, + "Failed to get PWM, deferring probe\n"); + else + dev_err(&pdev->dev, "Failed to get PWM: %d\n", ret); return ret; } |