All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: socfpga: s10: Make use of the helper function devm_platform_ioremap_resource()
@ 2021-09-07  8:51 Cai Huoqing
  2022-01-06  0:43 ` Stephen Boyd
  0 siblings, 1 reply; 2+ messages in thread
From: Cai Huoqing @ 2021-09-07  8:51 UTC (permalink / raw)
  To: caihuoqing
  Cc: Dinh Nguyen, Michael Turquette, Stephen Boyd, linux-clk, linux-kernel

Use the devm_platform_ioremap_resource() helper instead of
calling platform_get_resource() and devm_ioremap_resource()
separately

Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
---
 drivers/clk/socfpga/clk-s10.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/clk/socfpga/clk-s10.c b/drivers/clk/socfpga/clk-s10.c
index b532d51faaee..4e508a844b3d 100644
--- a/drivers/clk/socfpga/clk-s10.c
+++ b/drivers/clk/socfpga/clk-s10.c
@@ -388,12 +388,10 @@ static int s10_clkmgr_init(struct platform_device *pdev)
 	struct device_node *np = pdev->dev.of_node;
 	struct device *dev = &pdev->dev;
 	struct stratix10_clock_data *clk_data;
-	struct resource *res;
 	void __iomem *base;
 	int i, num_clks;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(dev, res);
+	base = devm_platform_ioremap_resource(pdev, 0);
 	if (IS_ERR(base)) {
 		pr_err("%s: failed to map clock registers\n", __func__);
 		return PTR_ERR(base);
-- 
2.25.1


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

* Re: [PATCH] clk: socfpga: s10: Make use of the helper function devm_platform_ioremap_resource()
  2021-09-07  8:51 [PATCH] clk: socfpga: s10: Make use of the helper function devm_platform_ioremap_resource() Cai Huoqing
@ 2022-01-06  0:43 ` Stephen Boyd
  0 siblings, 0 replies; 2+ messages in thread
From: Stephen Boyd @ 2022-01-06  0:43 UTC (permalink / raw)
  To: caihuoqing; +Cc: Dinh Nguyen, Michael Turquette, linux-clk, linux-kernel

Quoting Cai Huoqing (2021-09-07 01:51:43)
> Use the devm_platform_ioremap_resource() helper instead of
> calling platform_get_resource() and devm_ioremap_resource()
> separately
> 
> Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
> ---

Applied to clk-next

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

end of thread, other threads:[~2022-01-06  0:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-07  8:51 [PATCH] clk: socfpga: s10: Make use of the helper function devm_platform_ioremap_resource() Cai Huoqing
2022-01-06  0:43 ` Stephen Boyd

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.