dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -next v3] backlight: gpio_backlight: Switch to use dev_err_probe() helper
@ 2022-09-27  3:31 Yang Yingliang
  2022-09-27 10:56 ` Daniel Thompson
  0 siblings, 1 reply; 4+ messages in thread
From: Yang Yingliang @ 2022-09-27  3:31 UTC (permalink / raw)
  To: linux-fbdev, dri-devel; +Cc: jingoohan1, daniel.thompson, lee, yangyingliang

In the probe path, dev_err() can be replaced with dev_err_probe()
which will check if error code is -EPROBE_DEFER and prints the
error name. It also sets the defer probe reason which can be
checked later through debugfs. It's more simple in error path.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
v1 -> v3:
  Remove "Error: The ".
---
 drivers/video/backlight/gpio_backlight.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/drivers/video/backlight/gpio_backlight.c b/drivers/video/backlight/gpio_backlight.c
index 6f78d928f054..7df85b044e1c 100644
--- a/drivers/video/backlight/gpio_backlight.c
+++ b/drivers/video/backlight/gpio_backlight.c
@@ -64,13 +64,9 @@ static int gpio_backlight_probe(struct platform_device *pdev)
 	def_value = device_property_read_bool(dev, "default-on");
 
 	gbl->gpiod = devm_gpiod_get(dev, NULL, GPIOD_ASIS);
-	if (IS_ERR(gbl->gpiod)) {
-		ret = PTR_ERR(gbl->gpiod);
-		if (ret != -EPROBE_DEFER)
-			dev_err(dev,
-				"Error: The gpios parameter is missing or invalid.\n");
-		return ret;
-	}
+	if (IS_ERR(gbl->gpiod))
+		return dev_err_probe(dev, PTR_ERR(gbl->gpiod),
+				     "gpios parameter is missing or invalid.\n");
 
 	memset(&props, 0, sizeof(props));
 	props.type = BACKLIGHT_RAW;
-- 
2.25.1


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

* Re: [PATCH -next v3] backlight: gpio_backlight: Switch to use dev_err_probe() helper
  2022-09-27  3:31 [PATCH -next v3] backlight: gpio_backlight: Switch to use dev_err_probe() helper Yang Yingliang
@ 2022-09-27 10:56 ` Daniel Thompson
  2022-09-28  9:11   ` Lee Jones
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Thompson @ 2022-09-27 10:56 UTC (permalink / raw)
  To: Yang Yingliang; +Cc: jingoohan1, linux-fbdev, lee, dri-devel

On Tue, Sep 27, 2022 at 11:31:38AM +0800, Yang Yingliang wrote:
> In the probe path, dev_err() can be replaced with dev_err_probe()
> which will check if error code is -EPROBE_DEFER and prints the
> error name. It also sets the defer probe reason which can be
> checked later through debugfs. It's more simple in error path.
>
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>

Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>


Daniel.

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

* Re: [PATCH -next v3] backlight: gpio_backlight: Switch to use dev_err_probe() helper
  2022-09-27 10:56 ` Daniel Thompson
@ 2022-09-28  9:11   ` Lee Jones
  2022-09-28  9:25     ` Yang Yingliang
  0 siblings, 1 reply; 4+ messages in thread
From: Lee Jones @ 2022-09-28  9:11 UTC (permalink / raw)
  To: Daniel Thompson; +Cc: jingoohan1, linux-fbdev, dri-devel, Yang Yingliang

On Tue, 27 Sep 2022, Daniel Thompson wrote:

> On Tue, Sep 27, 2022 at 11:31:38AM +0800, Yang Yingliang wrote:
> > In the probe path, dev_err() can be replaced with dev_err_probe()
> > which will check if error code is -EPROBE_DEFER and prints the
> > error name. It also sets the defer probe reason which can be
> > checked later through debugfs. It's more simple in error path.
> >
> > Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
> 
> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>


The original patch is not in my inbox.

Was I missed from the original mail?

-- 
Lee Jones [李琼斯]

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

* Re: [PATCH -next v3] backlight: gpio_backlight: Switch to use dev_err_probe() helper
  2022-09-28  9:11   ` Lee Jones
@ 2022-09-28  9:25     ` Yang Yingliang
  0 siblings, 0 replies; 4+ messages in thread
From: Yang Yingliang @ 2022-09-28  9:25 UTC (permalink / raw)
  To: Lee Jones, Daniel Thompson
  Cc: jingoohan1, linux-fbdev, dri-devel, yangyingliang

Hi,

On 2022/9/28 17:11, Lee Jones wrote:
> On Tue, 27 Sep 2022, Daniel Thompson wrote:
>
>> On Tue, Sep 27, 2022 at 11:31:38AM +0800, Yang Yingliang wrote:
>>> In the probe path, dev_err() can be replaced with dev_err_probe()
>>> which will check if error code is -EPROBE_DEFER and prints the
>>> error name. It also sets the defer probe reason which can be
>>> checked later through debugfs. It's more simple in error path.
>>>
>>> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
>> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
>
> The original patch is not in my inbox.
>
> Was I missed from the original mail?
I have already add your mail address to my Cc list, when sending the patch.

Here is the early mail:
V1:
https://lore.kernel.org/linux-fbdev/f98b2e35-0f86-ffd0-db11-ca91930e153f@huawei.com/T/#t

V2:
https://lore.kernel.org/linux-fbdev/7d8cfce2-ba08-afc0-de2d-972ee15b5865@huawei.com/T/#t

Thanks,
Yang

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

end of thread, other threads:[~2022-09-28  9:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-27  3:31 [PATCH -next v3] backlight: gpio_backlight: Switch to use dev_err_probe() helper Yang Yingliang
2022-09-27 10:56 ` Daniel Thompson
2022-09-28  9:11   ` Lee Jones
2022-09-28  9:25     ` Yang Yingliang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).