summaryrefslogtreecommitdiff
path: root/drivers/regulator/pwm-regulator.c
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2020-03-27 15:53:00 +0000
committerMark Brown <broonie@kernel.org>2020-03-27 15:53:00 +0000
commit1ba0b52ea73bd46ff053edea21f5630f5277fefe (patch)
tree1a4e561a0e0238a54aff02aa47e20cfcd61522be /drivers/regulator/pwm-regulator.c
parent16fbf79b0f83bc752cee8589279f1ebfe57b3b6e (diff)
parentebb3b9a92ba98efa8d0525367e653d5ee6630c1b (diff)
Merge branch 'spi-5.7' into spi-next
Diffstat (limited to 'drivers/regulator/pwm-regulator.c')
-rw-r--r--drivers/regulator/pwm-regulator.c6
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;
}