* [PATCH linux-next] drm/panel: Simplify with dev_err_probe()
@ 2023-12-20 2:48 yang.guang5
2023-12-20 20:55 ` Jessica Zhang
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: yang.guang5 @ 2023-12-20 2:48 UTC (permalink / raw)
To: hanxu5
Cc: jiang.xuexin, chen.haonan2, cgel.zte, neil.armstrong,
quic_jesszhan, sam, maarten.lankhorst, mripard, tzimmermann,
airlied, daniel, dri-devel, linux-kernel
From: Yang Guang <yang.guang5@zte.com.cn>
dev_err_probe() can check if the error code is -EPROBE_DEFER
and can return the error code, replacing dev_err() with it
simplifies the code.
Signed-off-by: Chen Haonan <chen.haonan2@zte.com.cn>
---
drivers/gpu/drm/panel/panel-boe-himax8279d.c | 18 ++++++------------
1 file changed, 6 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/panel/panel-boe-himax8279d.c b/drivers/gpu/drm/panel/panel-boe-himax8279d.c
index 11b64acbe8a9..e225840b0d67 100644
--- a/drivers/gpu/drm/panel/panel-boe-himax8279d.c
+++ b/drivers/gpu/drm/panel/panel-boe-himax8279d.c
@@ -854,26 +854,20 @@ static int panel_add(struct panel_info *pinfo)
pinfo->pp18_gpio = devm_gpiod_get(dev, "pp18", GPIOD_OUT_HIGH);
if (IS_ERR(pinfo->pp18_gpio)) {
- ret = PTR_ERR(pinfo->pp18_gpio);
- if (ret != -EPROBE_DEFER)
- dev_err(dev, "failed to get pp18 gpio: %d\n", ret);
- return ret;
+ return dev_err_probe(dev, PTR_ERR(pinfo->pp18_gpio),
+ "failed to get pp18 gpio\n");
}
pinfo->pp33_gpio = devm_gpiod_get(dev, "pp33", GPIOD_OUT_HIGH);
if (IS_ERR(pinfo->pp33_gpio)) {
- ret = PTR_ERR(pinfo->pp33_gpio);
- if (ret != -EPROBE_DEFER)
- dev_err(dev, "failed to get pp33 gpio: %d\n", ret);
- return ret;
+ return dev_err_probe(dev, PTR_ERR(pinfo->pp33_gpio),
+ "failed to get pp33 gpio\n");
}
pinfo->enable_gpio = devm_gpiod_get(dev, "enable", GPIOD_OUT_HIGH);
if (IS_ERR(pinfo->enable_gpio)) {
- ret = PTR_ERR(pinfo->enable_gpio);
- if (ret != -EPROBE_DEFER)
- dev_err(dev, "failed to get enable gpio: %d\n", ret);
- return ret;
+ return dev_err_probe(dev, PTR_ERR(pinfo->enable_gpio),
+ "failed to get enable gpio\n");
}
drm_panel_init(&pinfo->base, dev, &panel_funcs,
--
2.25.1
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH linux-next] drm/panel: Simplify with dev_err_probe()
2023-12-20 2:48 [PATCH linux-next] drm/panel: Simplify with dev_err_probe() yang.guang5
@ 2023-12-20 20:55 ` Jessica Zhang
2023-12-22 8:02 ` neil.armstrong
2024-01-12 9:36 ` Neil Armstrong
2 siblings, 0 replies; 4+ messages in thread
From: Jessica Zhang @ 2023-12-20 20:55 UTC (permalink / raw)
To: yang.guang5, hanxu5
Cc: jiang.xuexin, chen.haonan2, cgel.zte, neil.armstrong, sam,
maarten.lankhorst, mripard, tzimmermann, airlied, daniel,
dri-devel, linux-kernel
On 12/19/2023 6:48 PM, yang.guang5@zte.com.cn wrote:
> From: Yang Guang <yang.guang5@zte.com.cn>
>
> dev_err_probe() can check if the error code is -EPROBE_DEFER
> and can return the error code, replacing dev_err() with it
> simplifies the code.
>
> Signed-off-by: Chen Haonan <chen.haonan2@zte.com.cn>
Reviewed-by: Jessica Zhang <quic_jesszhan@quicinc.com>
Thanks,
Jessica Zhang
> ---
> drivers/gpu/drm/panel/panel-boe-himax8279d.c | 18 ++++++------------
> 1 file changed, 6 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpu/drm/panel/panel-boe-himax8279d.c b/drivers/gpu/drm/panel/panel-boe-himax8279d.c
> index 11b64acbe8a9..e225840b0d67 100644
> --- a/drivers/gpu/drm/panel/panel-boe-himax8279d.c
> +++ b/drivers/gpu/drm/panel/panel-boe-himax8279d.c
> @@ -854,26 +854,20 @@ static int panel_add(struct panel_info *pinfo)
>
> pinfo->pp18_gpio = devm_gpiod_get(dev, "pp18", GPIOD_OUT_HIGH);
> if (IS_ERR(pinfo->pp18_gpio)) {
> - ret = PTR_ERR(pinfo->pp18_gpio);
> - if (ret != -EPROBE_DEFER)
> - dev_err(dev, "failed to get pp18 gpio: %d\n", ret);
> - return ret;
> + return dev_err_probe(dev, PTR_ERR(pinfo->pp18_gpio),
> + "failed to get pp18 gpio\n");
> }
>
> pinfo->pp33_gpio = devm_gpiod_get(dev, "pp33", GPIOD_OUT_HIGH);
> if (IS_ERR(pinfo->pp33_gpio)) {
> - ret = PTR_ERR(pinfo->pp33_gpio);
> - if (ret != -EPROBE_DEFER)
> - dev_err(dev, "failed to get pp33 gpio: %d\n", ret);
> - return ret;
> + return dev_err_probe(dev, PTR_ERR(pinfo->pp33_gpio),
> + "failed to get pp33 gpio\n");
> }
>
> pinfo->enable_gpio = devm_gpiod_get(dev, "enable", GPIOD_OUT_HIGH);
> if (IS_ERR(pinfo->enable_gpio)) {
> - ret = PTR_ERR(pinfo->enable_gpio);
> - if (ret != -EPROBE_DEFER)
> - dev_err(dev, "failed to get enable gpio: %d\n", ret);
> - return ret;
> + return dev_err_probe(dev, PTR_ERR(pinfo->enable_gpio),
> + "failed to get enable gpio\n");
> }
>
> drm_panel_init(&pinfo->base, dev, &panel_funcs,
> --
> 2.25.1
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH linux-next] drm/panel: Simplify with dev_err_probe()
2023-12-20 2:48 [PATCH linux-next] drm/panel: Simplify with dev_err_probe() yang.guang5
2023-12-20 20:55 ` Jessica Zhang
@ 2023-12-22 8:02 ` neil.armstrong
2024-01-12 9:36 ` Neil Armstrong
2 siblings, 0 replies; 4+ messages in thread
From: neil.armstrong @ 2023-12-22 8:02 UTC (permalink / raw)
To: yang.guang5, hanxu5
Cc: jiang.xuexin, chen.haonan2, cgel.zte, quic_jesszhan, sam,
maarten.lankhorst, mripard, tzimmermann, airlied, daniel,
dri-devel, linux-kernel
On 20/12/2023 03:48, yang.guang5@zte.com.cn wrote:
> From: Yang Guang <yang.guang5@zte.com.cn>
>
> dev_err_probe() can check if the error code is -EPROBE_DEFER
> and can return the error code, replacing dev_err() with it
> simplifies the code.
>
> Signed-off-by: Chen Haonan <chen.haonan2@zte.com.cn>
Got the following checkpatch error:
ERROR:NO_AUTHOR_SIGN_OFF: Missing Signed-off-by: line by nominal patch author 'Yang Guang <yang.guang5@zte.com.cn>'
Thanks,
Neil
> ---
> drivers/gpu/drm/panel/panel-boe-himax8279d.c | 18 ++++++------------
> 1 file changed, 6 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpu/drm/panel/panel-boe-himax8279d.c b/drivers/gpu/drm/panel/panel-boe-himax8279d.c
> index 11b64acbe8a9..e225840b0d67 100644
> --- a/drivers/gpu/drm/panel/panel-boe-himax8279d.c
> +++ b/drivers/gpu/drm/panel/panel-boe-himax8279d.c
> @@ -854,26 +854,20 @@ static int panel_add(struct panel_info *pinfo)
>
> pinfo->pp18_gpio = devm_gpiod_get(dev, "pp18", GPIOD_OUT_HIGH);
> if (IS_ERR(pinfo->pp18_gpio)) {
> - ret = PTR_ERR(pinfo->pp18_gpio);
> - if (ret != -EPROBE_DEFER)
> - dev_err(dev, "failed to get pp18 gpio: %d\n", ret);
> - return ret;
> + return dev_err_probe(dev, PTR_ERR(pinfo->pp18_gpio),
> + "failed to get pp18 gpio\n");
> }
>
> pinfo->pp33_gpio = devm_gpiod_get(dev, "pp33", GPIOD_OUT_HIGH);
> if (IS_ERR(pinfo->pp33_gpio)) {
> - ret = PTR_ERR(pinfo->pp33_gpio);
> - if (ret != -EPROBE_DEFER)
> - dev_err(dev, "failed to get pp33 gpio: %d\n", ret);
> - return ret;
> + return dev_err_probe(dev, PTR_ERR(pinfo->pp33_gpio),
> + "failed to get pp33 gpio\n");
> }
>
> pinfo->enable_gpio = devm_gpiod_get(dev, "enable", GPIOD_OUT_HIGH);
> if (IS_ERR(pinfo->enable_gpio)) {
> - ret = PTR_ERR(pinfo->enable_gpio);
> - if (ret != -EPROBE_DEFER)
> - dev_err(dev, "failed to get enable gpio: %d\n", ret);
> - return ret;
> + return dev_err_probe(dev, PTR_ERR(pinfo->enable_gpio),
> + "failed to get enable gpio\n");
> }
>
> drm_panel_init(&pinfo->base, dev, &panel_funcs,
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH linux-next] drm/panel: Simplify with dev_err_probe()
2023-12-20 2:48 [PATCH linux-next] drm/panel: Simplify with dev_err_probe() yang.guang5
2023-12-20 20:55 ` Jessica Zhang
2023-12-22 8:02 ` neil.armstrong
@ 2024-01-12 9:36 ` Neil Armstrong
2 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2024-01-12 9:36 UTC (permalink / raw)
To: hanxu5, yang.guang5
Cc: jiang.xuexin, chen.haonan2, cgel.zte, quic_jesszhan, sam,
maarten.lankhorst, mripard, tzimmermann, airlied, daniel,
dri-devel, linux-kernel
Hi,
On Wed, 20 Dec 2023 10:48:53 +0800, yang.guang5@zte.com.cn wrote:
> dev_err_probe() can check if the error code is -EPROBE_DEFER
> and can return the error code, replacing dev_err() with it
> simplifies the code.
>
>
Thanks, Applied to https://anongit.freedesktop.org/git/drm/drm-misc.git (drm-misc-next)
[1/1] drm/panel: Simplify with dev_err_probe()
https://cgit.freedesktop.org/drm/drm-misc/commit/?id=9f78b3ae051d9eeeed9658cf54b3f0ea6920097b
--
Neil
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-12 9:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-20 2:48 [PATCH linux-next] drm/panel: Simplify with dev_err_probe() yang.guang5
2023-12-20 20:55 ` Jessica Zhang
2023-12-22 8:02 ` neil.armstrong
2024-01-12 9:36 ` Neil Armstrong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®