linux-sunxi.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH] bus: sun50i-de2: Adjust printing error message
@ 2021-10-10  7:18 Jernej Skrabec
  2021-10-10 17:19 ` Andre Przywara
  2021-10-13 12:49 ` (subset) " Maxime Ripard
  0 siblings, 2 replies; 3+ messages in thread
From: Jernej Skrabec @ 2021-10-10  7:18 UTC (permalink / raw)
  To: mripard, wens; +Cc: linux-arm-kernel, linux-sunxi, linux-kernel, Jernej Skrabec

SRAM driver often returns -EPROBE_DEFER and thus this bus driver often
prints error message, even if it probes successfully later. This is
confusing for users and they often think that something is wrong.

Use dev_err_probe() helper for printing error message. It handles
-EPROBE_DEFER automatically.

Signed-off-by: Jernej Skrabec <jernej.skrabec@gmail.com>
---
 drivers/bus/sun50i-de2.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/bus/sun50i-de2.c b/drivers/bus/sun50i-de2.c
index 672518741f86..414f29cdedf0 100644
--- a/drivers/bus/sun50i-de2.c
+++ b/drivers/bus/sun50i-de2.c
@@ -15,10 +15,9 @@ static int sun50i_de2_bus_probe(struct platform_device *pdev)
 	int ret;
 
 	ret = sunxi_sram_claim(&pdev->dev);
-	if (ret) {
-		dev_err(&pdev->dev, "Error couldn't map SRAM to device\n");
-		return ret;
-	}
+	if (ret)
+		return dev_err_probe(&pdev->dev, ret,
+				     "Couldn't map SRAM to device\n");
 
 	of_platform_populate(np, NULL, NULL, &pdev->dev);
 
-- 
2.33.0


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

* Re: [PATCH] bus: sun50i-de2: Adjust printing error message
  2021-10-10  7:18 [PATCH] bus: sun50i-de2: Adjust printing error message Jernej Skrabec
@ 2021-10-10 17:19 ` Andre Przywara
  2021-10-13 12:49 ` (subset) " Maxime Ripard
  1 sibling, 0 replies; 3+ messages in thread
From: Andre Przywara @ 2021-10-10 17:19 UTC (permalink / raw)
  To: Jernej Skrabec; +Cc: mripard, wens, linux-arm-kernel, linux-sunxi, linux-kernel

On Sun, 10 Oct 2021 09:18:12 +0200
Jernej Skrabec <jernej.skrabec@gmail.com> wrote:

> SRAM driver often returns -EPROBE_DEFER and thus this bus driver often
> prints error message, even if it probes successfully later. This is
> confusing for users and they often think that something is wrong.
> 
> Use dev_err_probe() helper for printing error message. It handles
> -EPROBE_DEFER automatically.

Ah, many thanks for just fixing this, it was indeed confusing people.
And thanks for pointing to this useful helper!

Would this actually be a candidate for stable?

> Signed-off-by: Jernej Skrabec <jernej.skrabec@gmail.com>

Reviewed-by: Andre Przywara <andre.przywara@arm.com>

Cheers,
Andre

> ---
>  drivers/bus/sun50i-de2.c | 7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/bus/sun50i-de2.c b/drivers/bus/sun50i-de2.c
> index 672518741f86..414f29cdedf0 100644
> --- a/drivers/bus/sun50i-de2.c
> +++ b/drivers/bus/sun50i-de2.c
> @@ -15,10 +15,9 @@ static int sun50i_de2_bus_probe(struct platform_device *pdev)
>  	int ret;
>  
>  	ret = sunxi_sram_claim(&pdev->dev);
> -	if (ret) {
> -		dev_err(&pdev->dev, "Error couldn't map SRAM to device\n");
> -		return ret;
> -	}
> +	if (ret)
> +		return dev_err_probe(&pdev->dev, ret,
> +				     "Couldn't map SRAM to device\n");
>  
>  	of_platform_populate(np, NULL, NULL, &pdev->dev);
>  


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

* Re: (subset) [PATCH] bus: sun50i-de2: Adjust printing error message
  2021-10-10  7:18 [PATCH] bus: sun50i-de2: Adjust printing error message Jernej Skrabec
  2021-10-10 17:19 ` Andre Przywara
@ 2021-10-13 12:49 ` Maxime Ripard
  1 sibling, 0 replies; 3+ messages in thread
From: Maxime Ripard @ 2021-10-13 12:49 UTC (permalink / raw)
  To: mripard, wens, Jernej Skrabec
  Cc: Maxime Ripard, linux-arm-kernel, linux-sunxi, linux-kernel

On Sun, 10 Oct 2021 09:18:12 +0200, Jernej Skrabec wrote:
> SRAM driver often returns -EPROBE_DEFER and thus this bus driver often
> prints error message, even if it probes successfully later. This is
> confusing for users and they often think that something is wrong.
> 
> Use dev_err_probe() helper for printing error message. It handles
> -EPROBE_DEFER automatically.
> 
> [...]

Applied to local tree (sunxi/drivers-for-5.16).

Thanks!
Maxime

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

end of thread, other threads:[~2021-10-13 12:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-10  7:18 [PATCH] bus: sun50i-de2: Adjust printing error message Jernej Skrabec
2021-10-10 17:19 ` Andre Przywara
2021-10-13 12:49 ` (subset) " Maxime Ripard

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).