linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] pwm: tiehrpwm: handle deferred probe with dev_err_probe()
@ 2020-10-30 20:12 Grygorii Strashko
  2020-10-31  9:09 ` Vignesh Raghavendra
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Grygorii Strashko @ 2020-10-30 20:12 UTC (permalink / raw)
  To: Thierry Reding, Uwe Kleine-König, Lee Jones,
	Vignesh Raghavendra, linux-pwm
  Cc: linux-kernel, Grygorii Strashko

The devm_clk_get() may return -EPROBE_DEFER which is not handled properly
by TI EHRPWM driver and causes unnecessary boot log messages.

Hence, add proper deferred probe handling with new dev_err_probe() API.

Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
---
 drivers/pwm/pwm-tiehrpwm.c | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/drivers/pwm/pwm-tiehrpwm.c b/drivers/pwm/pwm-tiehrpwm.c
index 0846917ff2d2..14c8fdcfd607 100644
--- a/drivers/pwm/pwm-tiehrpwm.c
+++ b/drivers/pwm/pwm-tiehrpwm.c
@@ -437,10 +437,8 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev)
 		}
 	}
 
-	if (IS_ERR(clk)) {
-		dev_err(&pdev->dev, "failed to get clock\n");
-		return PTR_ERR(clk);
-	}
+	if (IS_ERR(clk))
+		return dev_err_probe(&pdev->dev, PTR_ERR(clk), "Failed to get fck\n");
 
 	pc->clk_rate = clk_get_rate(clk);
 	if (!pc->clk_rate) {
@@ -462,10 +460,8 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev)
 
 	/* Acquire tbclk for Time Base EHRPWM submodule */
 	pc->tbclk = devm_clk_get(&pdev->dev, "tbclk");
-	if (IS_ERR(pc->tbclk)) {
-		dev_err(&pdev->dev, "Failed to get tbclk\n");
-		return PTR_ERR(pc->tbclk);
-	}
+	if (IS_ERR(pc->tbclk))
+		return dev_err_probe(&pdev->dev, PTR_ERR(pc->tbclk), "Failed to get tbclk\n");
 
 	ret = clk_prepare(pc->tbclk);
 	if (ret < 0) {
-- 
2.17.1


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

* Re: [PATCH] pwm: tiehrpwm: handle deferred probe with dev_err_probe()
  2020-10-30 20:12 [PATCH] pwm: tiehrpwm: handle deferred probe with dev_err_probe() Grygorii Strashko
@ 2020-10-31  9:09 ` Vignesh Raghavendra
  2020-11-03  6:50 ` Uwe Kleine-König
  2020-11-11 20:00 ` Thierry Reding
  2 siblings, 0 replies; 4+ messages in thread
From: Vignesh Raghavendra @ 2020-10-31  9:09 UTC (permalink / raw)
  To: Grygorii Strashko, Thierry Reding, Uwe Kleine-König,
	Lee Jones, linux-pwm
  Cc: linux-kernel



On 10/31/20 1:42 AM, Grygorii Strashko wrote:
> The devm_clk_get() may return -EPROBE_DEFER which is not handled properly
> by TI EHRPWM driver and causes unnecessary boot log messages.
> 
> Hence, add proper deferred probe handling with new dev_err_probe() API.
> 
> Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
> ---

Reviewed-by: Vignesh Raghavendra <vigneshr@ti.com>

>  drivers/pwm/pwm-tiehrpwm.c | 12 ++++--------
>  1 file changed, 4 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/pwm/pwm-tiehrpwm.c b/drivers/pwm/pwm-tiehrpwm.c
> index 0846917ff2d2..14c8fdcfd607 100644
> --- a/drivers/pwm/pwm-tiehrpwm.c
> +++ b/drivers/pwm/pwm-tiehrpwm.c
> @@ -437,10 +437,8 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev)
>  		}
>  	}
>  
> -	if (IS_ERR(clk)) {
> -		dev_err(&pdev->dev, "failed to get clock\n");
> -		return PTR_ERR(clk);
> -	}
> +	if (IS_ERR(clk))
> +		return dev_err_probe(&pdev->dev, PTR_ERR(clk), "Failed to get fck\n");
>  
>  	pc->clk_rate = clk_get_rate(clk);
>  	if (!pc->clk_rate) {
> @@ -462,10 +460,8 @@ static int ehrpwm_pwm_probe(struct platform_device *pdev)
>  
>  	/* Acquire tbclk for Time Base EHRPWM submodule */
>  	pc->tbclk = devm_clk_get(&pdev->dev, "tbclk");
> -	if (IS_ERR(pc->tbclk)) {
> -		dev_err(&pdev->dev, "Failed to get tbclk\n");
> -		return PTR_ERR(pc->tbclk);
> -	}
> +	if (IS_ERR(pc->tbclk))
> +		return dev_err_probe(&pdev->dev, PTR_ERR(pc->tbclk), "Failed to get tbclk\n");
>  
>  	ret = clk_prepare(pc->tbclk);
>  	if (ret < 0) {
> 

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

* Re: [PATCH] pwm: tiehrpwm: handle deferred probe with dev_err_probe()
  2020-10-30 20:12 [PATCH] pwm: tiehrpwm: handle deferred probe with dev_err_probe() Grygorii Strashko
  2020-10-31  9:09 ` Vignesh Raghavendra
@ 2020-11-03  6:50 ` Uwe Kleine-König
  2020-11-11 20:00 ` Thierry Reding
  2 siblings, 0 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2020-11-03  6:50 UTC (permalink / raw)
  To: Grygorii Strashko
  Cc: Thierry Reding, Lee Jones, Vignesh Raghavendra, linux-pwm, linux-kernel

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

On Fri, Oct 30, 2020 at 10:12:54PM +0200, Grygorii Strashko wrote:
> The devm_clk_get() may return -EPROBE_DEFER which is not handled properly
> by TI EHRPWM driver and causes unnecessary boot log messages.
> 
> Hence, add proper deferred probe handling with new dev_err_probe() API.
> 
> Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>

Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Thanks
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | https://www.pengutronix.de/ |

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

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

* Re: [PATCH] pwm: tiehrpwm: handle deferred probe with dev_err_probe()
  2020-10-30 20:12 [PATCH] pwm: tiehrpwm: handle deferred probe with dev_err_probe() Grygorii Strashko
  2020-10-31  9:09 ` Vignesh Raghavendra
  2020-11-03  6:50 ` Uwe Kleine-König
@ 2020-11-11 20:00 ` Thierry Reding
  2 siblings, 0 replies; 4+ messages in thread
From: Thierry Reding @ 2020-11-11 20:00 UTC (permalink / raw)
  To: Grygorii Strashko
  Cc: Uwe Kleine-König, Lee Jones, Vignesh Raghavendra, linux-pwm,
	linux-kernel

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

On Fri, Oct 30, 2020 at 10:12:54PM +0200, Grygorii Strashko wrote:
> The devm_clk_get() may return -EPROBE_DEFER which is not handled properly
> by TI EHRPWM driver and causes unnecessary boot log messages.
> 
> Hence, add proper deferred probe handling with new dev_err_probe() API.
> 
> Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
> ---
>  drivers/pwm/pwm-tiehrpwm.c | 12 ++++--------
>  1 file changed, 4 insertions(+), 8 deletions(-)

Applied, thanks.

Thierry

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

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

end of thread, other threads:[~2020-11-11 20:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-30 20:12 [PATCH] pwm: tiehrpwm: handle deferred probe with dev_err_probe() Grygorii Strashko
2020-10-31  9:09 ` Vignesh Raghavendra
2020-11-03  6:50 ` Uwe Kleine-König
2020-11-11 20:00 ` Thierry Reding

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