public inbox for linux-pwm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] PWM Backlight: Fix a bug which could cause the PWM backlight driver use the wrong PWM chip and fail the driver probing if multiple PWM chips exist. This defect could also cause the unintended PWM chip  used and unaccessable by other drivers. The patch will check the error state first and allow a deferral PWM backlight probing if the intended PWM driver is not loaded at the probing moment.
@ 2014-09-03 20:00 ryang
  2014-09-04  8:38 ` Lee Jones
  0 siblings, 1 reply; 4+ messages in thread
From: ryang @ 2014-09-03 20:00 UTC (permalink / raw)
  To: thierry.reding, jg1.han, lee.jones; +Cc: linux-pwm, ryang

Signed-off-by: ryang <ryang@hach.com>
---
 drivers/video/backlight/pwm_bl.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/video/backlight/pwm_bl.c b/drivers/video/backlight/pwm_bl.c
index b85983e..e0014a5 100644
--- a/drivers/video/backlight/pwm_bl.c
+++ b/drivers/video/backlight/pwm_bl.c
@@ -273,6 +273,9 @@ static int pwm_backlight_probe(struct platform_device *pdev)
 
 	pb->pwm = devm_pwm_get(&pdev->dev, NULL);
 	if (IS_ERR(pb->pwm)) {
+		ret = PTR_ERR(pb->pwm);
+		if (ret == -EPROBE_DEFER)
+			goto err_alloc;
 		dev_err(&pdev->dev, "unable to request PWM, trying legacy API\n");
 
 		pb->pwm = pwm_request(data->pwm_id, "pwm-backlight");
-- 
1.9.1


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

end of thread, other threads:[~2014-09-04 15:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-03 20:00 [PATCH 1/1] PWM Backlight: Fix a bug which could cause the PWM backlight driver use the wrong PWM chip and fail the driver probing if multiple PWM chips exist. This defect could also cause the unintended PWM chip used and unaccessable by other drivers. The patch will check the error state first and allow a deferral PWM backlight probing if the intended PWM driver is not loaded at the probing moment ryang
2014-09-04  8:38 ` Lee Jones
2014-09-04  8:39   ` Lee Jones
2014-09-04 15:33     ` [PATCH 1/1] PWM Backlight: Fix a bug which could cause the PWM backlight driver use the wrong PWM chip and fail the driver probing if multiple PWM chips exist. This defect could also cause the unintended PWM chip used and unaccessable by other dri Yang, Robert

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