diff options
author | Yangtao Li <[email protected]> | 2023-07-05 14:53:07 +0800 |
---|---|---|
committer | Stephen Boyd <[email protected]> | 2023-08-22 14:28:20 -0700 |
commit | 9b7f768e426a0da6f6e9f74f941e34473b6013b8 (patch) | |
tree | 90c330a9f2edb45a97b205fce6edfd315ac3fb91 | |
parent | 41c54f19b181d6e1ba6ad766e1b64c796f0f9209 (diff) |
clk: hsdk-pll: Convert to devm_platform_ioremap_resource()
Use devm_platform_ioremap_resource() to simplify code.
Signed-off-by: Yangtao Li <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Stephen Boyd <[email protected]>
-rw-r--r-- | drivers/clk/clk-hsdk-pll.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/clk/clk-hsdk-pll.c b/drivers/clk/clk-hsdk-pll.c index 9b4cefaf2031..5d2a90addf1a 100644 --- a/drivers/clk/clk-hsdk-pll.c +++ b/drivers/clk/clk-hsdk-pll.c @@ -303,7 +303,6 @@ static const struct clk_ops hsdk_pll_ops = { static int hsdk_pll_clk_probe(struct platform_device *pdev) { int ret; - struct resource *mem; const char *parent_name; unsigned int num_parents; struct hsdk_pll_clk *pll_clk; @@ -314,8 +313,7 @@ static int hsdk_pll_clk_probe(struct platform_device *pdev) if (!pll_clk) return -ENOMEM; - mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); - pll_clk->regs = devm_ioremap_resource(dev, mem); + pll_clk->regs = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(pll_clk->regs)) return PTR_ERR(pll_clk->regs); |