Commit 41c54f19 authored by Yangtao Li's avatar Yangtao Li Committed by Stephen Boyd

clk: gemini: Convert to devm_platform_ioremap_resource()

Use devm_platform_ioremap_resource() to simplify code.
Signed-off-by: default avatarYangtao Li <frank.li@vivo.com>
Link: https://lore.kernel.org/r/20230705065313.67043-6-frank.li@vivo.comSigned-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent d1aa4546
...@@ -276,7 +276,6 @@ static int gemini_clk_probe(struct platform_device *pdev) ...@@ -276,7 +276,6 @@ static int gemini_clk_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct device_node *np = dev->of_node; struct device_node *np = dev->of_node;
unsigned int mult, div; unsigned int mult, div;
struct resource *res;
u32 val; u32 val;
int ret; int ret;
int i; int i;
...@@ -286,8 +285,7 @@ static int gemini_clk_probe(struct platform_device *pdev) ...@@ -286,8 +285,7 @@ static int gemini_clk_probe(struct platform_device *pdev)
return -ENOMEM; return -ENOMEM;
/* Remap the system controller for the exclusive register */ /* Remap the system controller for the exclusive register */
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); base = devm_platform_ioremap_resource(pdev, 0);
base = devm_ioremap_resource(dev, res);
if (IS_ERR(base)) if (IS_ERR(base))
return PTR_ERR(base); return PTR_ERR(base);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment