[PATCH] soc: ti: pruss: using pm_runtime_resume_and_get instead of pm_runtime_get_sync

Dave Gerlach d-gerlach at ti.com
Fri Apr 8 05:02:23 PDT 2022



On 4/8/22 03:08, cgel.zte at gmail.com wrote:
> From: Minghao Chi <chi.minghao at zte.com.cn>
> 
> Using pm_runtime_resume_and_get is more appropriate
> for simplifing code
> 

Looks good to me.

Reviewed-by: Dave Gerlach <d-gerlach at ti.com>

> Reported-by: Zeal Robot <zealci at zte.com.cn>
> Signed-off-by: Minghao Chi <chi.minghao at zte.com.cn>
> ---
>  drivers/soc/ti/pruss.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/drivers/soc/ti/pruss.c b/drivers/soc/ti/pruss.c
> index b36779309e49..0e4ba0f89533 100644
> --- a/drivers/soc/ti/pruss.c
> +++ b/drivers/soc/ti/pruss.c
> @@ -279,10 +279,9 @@ static int pruss_probe(struct platform_device *pdev)
>  	platform_set_drvdata(pdev, pruss);
>  
>  	pm_runtime_enable(dev);
> -	ret = pm_runtime_get_sync(dev);
> +	ret = pm_runtime_resume_and_get(dev);
>  	if (ret < 0) {
>  		dev_err(dev, "couldn't enable module\n");
> -		pm_runtime_put_noidle(dev);
>  		goto rpm_disable;
>  	}
>  



More information about the linux-arm-kernel mailing list