public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] bus: qcom: Use devm_platform_ioremap_resource()
@ 2023-04-28  6:52 Yang Li
  2023-04-28 16:29 ` Caleb Connolly
  0 siblings, 1 reply; 2+ messages in thread
From: Yang Li @ 2023-04-28  6:52 UTC (permalink / raw)
  To: agross; +Cc: andersson, konrad.dybcio, linux-arm-msm, linux-kernel, Yang Li

Convert platform_get_resource(),devm_ioremap_resource() to a single
call to devm_platform_ioremap_resource(), as this is exactly what this
function does.

Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/bus/qcom-ebi2.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/bus/qcom-ebi2.c b/drivers/bus/qcom-ebi2.c
index c1fef1b4bd89..01e76bb05218 100644
--- a/drivers/bus/qcom-ebi2.c
+++ b/drivers/bus/qcom-ebi2.c
@@ -294,7 +294,6 @@ static int qcom_ebi2_probe(struct platform_device *pdev)
 	struct device_node *np = pdev->dev.of_node;
 	struct device_node *child;
 	struct device *dev = &pdev->dev;
-	struct resource *res;
 	void __iomem *ebi2_base;
 	void __iomem *ebi2_xmem;
 	struct clk *ebi2xclk;
@@ -325,15 +324,13 @@ static int qcom_ebi2_probe(struct platform_device *pdev)
 		goto err_disable_2x_clk;
 	}
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	ebi2_base = devm_ioremap_resource(dev, res);
+	ebi2_base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(ebi2_base)) {
 		ret = PTR_ERR(ebi2_base);
 		goto err_disable_clk;
 	}
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
-	ebi2_xmem = devm_ioremap_resource(dev, res);
+	ebi2_xmem = devm_platform_ioremap_resource(pdev, 1);
 	if (IS_ERR(ebi2_xmem)) {
 		ret = PTR_ERR(ebi2_xmem);
 		goto err_disable_clk;
-- 
2.20.1.7.g153144c


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

* Re: [PATCH -next] bus: qcom: Use devm_platform_ioremap_resource()
  2023-04-28  6:52 [PATCH -next] bus: qcom: Use devm_platform_ioremap_resource() Yang Li
@ 2023-04-28 16:29 ` Caleb Connolly
  0 siblings, 0 replies; 2+ messages in thread
From: Caleb Connolly @ 2023-04-28 16:29 UTC (permalink / raw)
  To: Yang Li, agross; +Cc: andersson, konrad.dybcio, linux-arm-msm, linux-kernel



On 28/04/2023 07:52, Yang Li wrote:
> Convert platform_get_resource(),devm_ioremap_resource() to a single
> call to devm_platform_ioremap_resource(), as this is exactly what this
> function does.
> 
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>

Reviewed-by: Caleb Connolly <caleb.connolly@linaro.org>
> ---
>   drivers/bus/qcom-ebi2.c | 7 ++-----
>   1 file changed, 2 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/bus/qcom-ebi2.c b/drivers/bus/qcom-ebi2.c
> index c1fef1b4bd89..01e76bb05218 100644
> --- a/drivers/bus/qcom-ebi2.c
> +++ b/drivers/bus/qcom-ebi2.c
> @@ -294,7 +294,6 @@ static int qcom_ebi2_probe(struct platform_device *pdev)
>   	struct device_node *np = pdev->dev.of_node;
>   	struct device_node *child;
>   	struct device *dev = &pdev->dev;
> -	struct resource *res;
>   	void __iomem *ebi2_base;
>   	void __iomem *ebi2_xmem;
>   	struct clk *ebi2xclk;
> @@ -325,15 +324,13 @@ static int qcom_ebi2_probe(struct platform_device *pdev)
>   		goto err_disable_2x_clk;
>   	}
>   
> -	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> -	ebi2_base = devm_ioremap_resource(dev, res);
> +	ebi2_base = devm_platform_ioremap_resource(pdev, 0);
>   	if (IS_ERR(ebi2_base)) {
>   		ret = PTR_ERR(ebi2_base);
>   		goto err_disable_clk;
>   	}
>   
> -	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
> -	ebi2_xmem = devm_ioremap_resource(dev, res);
> +	ebi2_xmem = devm_platform_ioremap_resource(pdev, 1);
>   	if (IS_ERR(ebi2_xmem)) {
>   		ret = PTR_ERR(ebi2_xmem);
>   		goto err_disable_clk;

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

end of thread, other threads:[~2023-04-28 16:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-28  6:52 [PATCH -next] bus: qcom: Use devm_platform_ioremap_resource() Yang Li
2023-04-28 16:29 ` Caleb Connolly

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox