All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/panel: rm68200: no error msg if probe deferred
@ 2019-03-21  8:05 ` Yannick Fertré
  0 siblings, 0 replies; 5+ messages in thread
From: Yannick Fertré @ 2019-03-21  8:05 UTC (permalink / raw)
  To: Yannick Fertre, Philippe Cornu, Thierry Reding, David Airlie,
	Daniel Vetter, dri-devel, linux-kernel, linux-stm32

Do not print an error message if the regulator framework
returns EPROBE_DEFER.

Signed-off-by: Yannick Fertré <yannick.fertre@st.com>
---
 drivers/gpu/drm/panel/panel-raydium-rm68200.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/panel/panel-raydium-rm68200.c b/drivers/gpu/drm/panel/panel-raydium-rm68200.c
index 7759353..1418682 100644
--- a/drivers/gpu/drm/panel/panel-raydium-rm68200.c
+++ b/drivers/gpu/drm/panel/panel-raydium-rm68200.c
@@ -383,7 +383,8 @@ static int rm68200_probe(struct mipi_dsi_device *dsi)
 	ctx->supply = devm_regulator_get(dev, "power");
 	if (IS_ERR(ctx->supply)) {
 		ret = PTR_ERR(ctx->supply);
-		dev_err(dev, "cannot get regulator: %d\n", ret);
+		if (ret != -EPROBE_DEFER)
+			dev_err(dev, "cannot get regulator: %d\n", ret);
 		return ret;
 	}
 
-- 
2.7.4


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

* [PATCH] drm/panel: rm68200: no error msg if probe deferred
@ 2019-03-21  8:05 ` Yannick Fertré
  0 siblings, 0 replies; 5+ messages in thread
From: Yannick Fertré @ 2019-03-21  8:05 UTC (permalink / raw)
  To: Yannick Fertre, Philippe Cornu, Thierry Reding, David Airlie,
	Daniel Vetter, dri-devel, linux-kernel, linux-stm32

Do not print an error message if the regulator framework
returns EPROBE_DEFER.

Signed-off-by: Yannick Fertré <yannick.fertre@st.com>
---
 drivers/gpu/drm/panel/panel-raydium-rm68200.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/panel/panel-raydium-rm68200.c b/drivers/gpu/drm/panel/panel-raydium-rm68200.c
index 7759353..1418682 100644
--- a/drivers/gpu/drm/panel/panel-raydium-rm68200.c
+++ b/drivers/gpu/drm/panel/panel-raydium-rm68200.c
@@ -383,7 +383,8 @@ static int rm68200_probe(struct mipi_dsi_device *dsi)
 	ctx->supply = devm_regulator_get(dev, "power");
 	if (IS_ERR(ctx->supply)) {
 		ret = PTR_ERR(ctx->supply);
-		dev_err(dev, "cannot get regulator: %d\n", ret);
+		if (ret != -EPROBE_DEFER)
+			dev_err(dev, "cannot get regulator: %d\n", ret);
 		return ret;
 	}
 
-- 
2.7.4

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] drm/panel: rm68200: no error msg if probe deferred
  2019-03-21  8:05 ` Yannick Fertré
@ 2019-03-26 12:50   ` Philippe CORNU
  -1 siblings, 0 replies; 5+ messages in thread
From: Philippe CORNU @ 2019-03-26 12:50 UTC (permalink / raw)
  To: Yannick FERTRE, Thierry Reding, David Airlie, Daniel Vetter,
	dri-devel, linux-kernel, linux-stm32

Dear Yannick,
Many thanks for your patch.

Reviewed-by: Philippe Cornu <philippe.cornu@st.com>

Philippe :-)


On 3/21/19 9:05 AM, Yannick Fertré wrote:
> Do not print an error message if the regulator framework
> returns EPROBE_DEFER.
> 
> Signed-off-by: Yannick Fertré <yannick.fertre@st.com>
> ---
>   drivers/gpu/drm/panel/panel-raydium-rm68200.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/panel/panel-raydium-rm68200.c b/drivers/gpu/drm/panel/panel-raydium-rm68200.c
> index 7759353..1418682 100644
> --- a/drivers/gpu/drm/panel/panel-raydium-rm68200.c
> +++ b/drivers/gpu/drm/panel/panel-raydium-rm68200.c
> @@ -383,7 +383,8 @@ static int rm68200_probe(struct mipi_dsi_device *dsi)
>   	ctx->supply = devm_regulator_get(dev, "power");
>   	if (IS_ERR(ctx->supply)) {
>   		ret = PTR_ERR(ctx->supply);
> -		dev_err(dev, "cannot get regulator: %d\n", ret);
> +		if (ret != -EPROBE_DEFER)
> +			dev_err(dev, "cannot get regulator: %d\n", ret);
>   		return ret;
>   	}
>   
> 

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

* Re: [PATCH] drm/panel: rm68200: no error msg if probe deferred
@ 2019-03-26 12:50   ` Philippe CORNU
  0 siblings, 0 replies; 5+ messages in thread
From: Philippe CORNU @ 2019-03-26 12:50 UTC (permalink / raw)
  To: Yannick FERTRE, Thierry Reding, David Airlie, Daniel Vetter,
	dri-devel, linux-kernel, linux-stm32

Dear Yannick,
Many thanks for your patch.

Reviewed-by: Philippe Cornu <philippe.cornu@st.com>

Philippe :-)


On 3/21/19 9:05 AM, Yannick Fertré wrote:
> Do not print an error message if the regulator framework
> returns EPROBE_DEFER.
> 
> Signed-off-by: Yannick Fertré <yannick.fertre@st.com>
> ---
>   drivers/gpu/drm/panel/panel-raydium-rm68200.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/panel/panel-raydium-rm68200.c b/drivers/gpu/drm/panel/panel-raydium-rm68200.c
> index 7759353..1418682 100644
> --- a/drivers/gpu/drm/panel/panel-raydium-rm68200.c
> +++ b/drivers/gpu/drm/panel/panel-raydium-rm68200.c
> @@ -383,7 +383,8 @@ static int rm68200_probe(struct mipi_dsi_device *dsi)
>   	ctx->supply = devm_regulator_get(dev, "power");
>   	if (IS_ERR(ctx->supply)) {
>   		ret = PTR_ERR(ctx->supply);
> -		dev_err(dev, "cannot get regulator: %d\n", ret);
> +		if (ret != -EPROBE_DEFER)
> +			dev_err(dev, "cannot get regulator: %d\n", ret);
>   		return ret;
>   	}
>   
> 

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

* Re: [PATCH] drm/panel: rm68200: no error msg if probe deferred
  2019-03-21  8:05 ` Yannick Fertré
  (?)
  (?)
@ 2019-04-03 16:24 ` Thierry Reding
  -1 siblings, 0 replies; 5+ messages in thread
From: Thierry Reding @ 2019-04-03 16:24 UTC (permalink / raw)
  To: Yannick Fertré
  Cc: Philippe Cornu, David Airlie, Daniel Vetter, dri-devel,
	linux-kernel, linux-stm32

[-- Attachment #1: Type: text/plain, Size: 360 bytes --]

On Thu, Mar 21, 2019 at 09:05:35AM +0100, Yannick Fertré wrote:
> Do not print an error message if the regulator framework
> returns EPROBE_DEFER.
> 
> Signed-off-by: Yannick Fertré <yannick.fertre@st.com>
> ---
>  drivers/gpu/drm/panel/panel-raydium-rm68200.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)

Applied, thanks.

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2019-04-03 16:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-21  8:05 [PATCH] drm/panel: rm68200: no error msg if probe deferred Yannick Fertré
2019-03-21  8:05 ` Yannick Fertré
2019-03-26 12:50 ` Philippe CORNU
2019-03-26 12:50   ` Philippe CORNU
2019-04-03 16:24 ` Thierry Reding

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.