Linux PWM subsystem development
 help / color / mirror / Atom feed
* [PATCH] regulator: pwm: Don't warn on probe deferral
@ 2020-02-24 14:40 Jon Hunter
       [not found] ` <20200224144048.6587-1-jonathanh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 7+ messages in thread
From: Jon Hunter @ 2020-02-24 14:40 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown, Thierry Reding
  Cc: linux-kernel, linux-pwm, linux-tegra, Jon Hunter

Deferred probe is an expected return value for devm_pwm_get(). Given
that the driver deals with it properly, there's no need to output a
warning that may potentially confuse users.

Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
---
 drivers/regulator/pwm-regulator.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/regulator/pwm-regulator.c b/drivers/regulator/pwm-regulator.c
index e74e11101fc1..fb25777a7d47 100644
--- a/drivers/regulator/pwm-regulator.c
+++ b/drivers/regulator/pwm-regulator.c
@@ -354,7 +354,8 @@ 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_err(&pdev->dev, "Failed to get PWM: %d\n", ret);
 		return ret;
 	}
 
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-03-06 12:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-24 14:40 [PATCH] regulator: pwm: Don't warn on probe deferral Jon Hunter
     [not found] ` <20200224144048.6587-1-jonathanh-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2020-02-24 15:12   ` Thierry Reding
2020-02-24 16:58   ` Mark Brown
     [not found]     ` <20200224165859.GJ6215-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2020-02-26 16:17       ` Uwe Kleine-König
     [not found]         ` <20200226161757.idpzbs3jmayt7ya6-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
2020-02-26 16:39           ` Mark Brown
     [not found]             ` <20200226163905.GH4136-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2020-03-06  7:51               ` Uwe Kleine-König
2020-03-06 12:35                 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox