public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pwm: pwm-omap-dmtimer: fix probing problems by returning EPROBE_DEFER
@ 2018-07-28 16:59 Andreas Kemnade
  2018-07-28 20:35 ` Ladislav Michl
  0 siblings, 1 reply; 8+ messages in thread
From: Andreas Kemnade @ 2018-07-28 16:59 UTC (permalink / raw)
  To: Thierry Reding, linux-pwm, linux-kernel, letux-kernel, j-keerthy,
	tony, linux-omap
  Cc: Andreas Kemnade

I got this in the kernel log:
[    0.756042] omap-dmtimer-pwm dmtimer-pwm: dmtimer pdata structure NULL
[    0.756134] omap-dmtimer-pwm: probe of dmtimer-pwm failed with error -22

the probe function has to wait until omap_dm_timer_probe() in
clocksource/timer-ti-dm.c has initialized pdata, so defer probing

Fixes: b7290cf6ff78 (pwm: pwm-omap-dmtimer: Adapt driver to utilize dmtimer pdata ops)
Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
---
 drivers/pwm/pwm-omap-dmtimer.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/pwm/pwm-omap-dmtimer.c b/drivers/pwm/pwm-omap-dmtimer.c
index 665da3c8fbce..808835179c2e 100644
--- a/drivers/pwm/pwm-omap-dmtimer.c
+++ b/drivers/pwm/pwm-omap-dmtimer.c
@@ -264,8 +264,7 @@ static int pwm_omap_dmtimer_probe(struct platform_device *pdev)
 
 	timer_pdata = dev_get_platdata(&timer_pdev->dev);
 	if (!timer_pdata) {
-		dev_err(&pdev->dev, "dmtimer pdata structure NULL\n");
-		ret = -EINVAL;
+		ret = -EPROBE_DEFER;
 		goto put;
 	}
 
-- 
2.11.0


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

end of thread, other threads:[~2018-07-31 14:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-28 16:59 [PATCH] pwm: pwm-omap-dmtimer: fix probing problems by returning EPROBE_DEFER Andreas Kemnade
2018-07-28 20:35 ` Ladislav Michl
2018-07-29  6:32   ` H. Nikolaus Schaller
2018-07-29 18:08     ` Ladislav Michl
2018-07-29 18:19       ` H. Nikolaus Schaller
2018-07-30 22:56         ` David Rivshin
2018-07-31  6:35           ` H. Nikolaus Schaller
2018-07-31 14:35             ` David Rivshin

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