Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1237600

Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while requesting the PWM"

From Robert Jarzmik <robert.jarzmik@free.fr>
Newsgroups linux.kernel
Subject Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while requesting the PWM"
Date 2015-10-01 19:50 +0200
Message-ID <qeQ9t-39m-29@gated-at.bofh.it> (permalink)
References <qd3u9-YZ-11@gated-at.bofh.it> <qevom-66i-17@gated-at.bofh.it> <qeH6a-6r6-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Nicolas Ferre <nicolas.ferre@atmel.com> writes:

> Le 30/09/2015 21:29, Robert Jarzmik a écrit :
>> Robert Jarzmik <robert.jarzmik@free.fr> writes:
>> 
>>> This reverts commit 68feaca0b13e453aa14ee064c1736202b48b342f.
>>> This commit breaks legacy platforms, for which :
>>>  (a) no pwm table is added (legacy platforms)
>>>  (b) in this case, in pwm_get(), pmw_lookup_list is empty, and therefore
>>>      chosen == NULL, and therefore pwm_get() returns NULL, and pwm_get()
>>>      returns -EPROBE_DEFER
>>>  (c) as a consequence, this code is unreachable in pwm_bl.c :
>>>      if (IS_ERR(pb->pwm)) {
>>> 	ret = PTR_ERR(pb->pwm);
>>>  	dev_info(&pdev->dev, "%s:%d(): %d\n", __func__, __LINE__, ret);
>>>  	if (ret == -EPROBE_DEFER)
>>>  		goto err_alloc;
>>>
>>>  	dev_err(&pdev->dev, "unable to request PWM, trying legacy API\n");
>>>  	pb->legacy = true;
>>>  	pb->pwm = pwm_request(data->pwm_id, "pwm-backlight");
>>>
>>> As this code is unreachable, all legacy platforms relying on pwm_id are
>>> broken, amongst which pxa have been tested as broken.
>>>
>>> Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
>> Thierry, would you have a look please ?
>> As I said before, all legacy platform relying on pwm_id are broken. I'd like to
>> be sure this lands in the next -rc series.
>
> Otherwise, Boris proposed this fix:
> 8<-----------------------------------------------------------
> diff --git a/drivers/video/backlight/pwm_bl.c b/drivers/video/backlight/pwm_bl.c
> index eff379b..00483d4 100644
> --- a/drivers/video/backlight/pwm_bl.c
> +++ b/drivers/video/backlight/pwm_bl.c
> @@ -273,15 +273,15 @@ 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->legacy = true;
>  		pb->pwm = pwm_request(data->pwm_id, "pwm-backlight");
>  		if (IS_ERR(pb->pwm)) {
>  			dev_err(&pdev->dev, "unable to request legacy PWM\n");
> -			ret = PTR_ERR(pb->pwm);
> +			if (ret != -EPROBE_DEFER)
> +				ret = PTR_ERR(pb->pwm);
> +
>  			goto err_alloc;
>  		}
>  	}
>
> which is not tested and may add an extra non-valid error log.
Now it is tested, and it works correctly AFAICS.

So could you or Borris post this patch, with :
Fixes: 68feaca0b13e ("backlight: pwm: Handle EPROBE_DEFER while requesting the PWM")
Tested-by: Robert Jarzmik <robert.jarzmik@free.fr>

That would be a good replacement for the revert. Maybe stable tree should be
joined too ...

Cheers.

-- 
Robert
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while requesting the PWM" Robert Jarzmik <robert.jarzmik@free.fr> - 2015-09-26 21:40 +0200
  Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while requesting the PWM" Robert Jarzmik <robert.jarzmik@free.fr> - 2015-09-30 21:40 +0200
    Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while  requesting the PWM" Nicolas Ferre <nicolas.ferre@atmel.com> - 2015-10-01 10:10 +0200
      Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while requesting the PWM" Robert Jarzmik <robert.jarzmik@free.fr> - 2015-10-01 11:20 +0200
      Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while requesting the PWM" Robert Jarzmik <robert.jarzmik@free.fr> - 2015-10-01 19:50 +0200
      Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while  requesting the PWM" Thierry Reding <thierry.reding@gmail.com> - 2015-10-05 11:40 +0200
        Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while  requesting the PWM" Boris Brezillon <boris.brezillon@free-electrons.com> - 2015-10-05 13:20 +0200
          Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while  requesting the PWM" Thierry Reding <thierry.reding@gmail.com> - 2015-10-05 15:00 +0200
            Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while  requesting the PWM" Boris Brezillon <boris.brezillon@free-electrons.com> - 2015-10-05 15:40 +0200
              Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while  requesting the PWM" Thierry Reding <thierry.reding@gmail.com> - 2015-10-05 16:10 +0200
                Re: [PATCH] Revert "backlight: pwm: Handle EPROBE_DEFER while  requesting the PWM" Boris Brezillon <boris.brezillon@free-electrons.com> - 2015-10-05 17:30 +0200

csiph-web