Commit 3f7785a2 authored by Cai Huoqing's avatar Cai Huoqing Committed by Maxime Ripard

clk: sunxi-ng: ccu-sun8i-de2: Make use of the helper function devm_platform_ioremap_resource()

Use the devm_platform_ioremap_resource() helper instead of
calling platform_get_resource() and devm_ioremap_resource()
separately
Signed-off-by: default avatarCai Huoqing <caihuoqing@baidu.com>
Signed-off-by: default avatarMaxime Ripard <maxime@cerno.tech>
Link: https://lore.kernel.org/r/20210907085221.4713-1-caihuoqing@baidu.com
parent defecd54
...@@ -280,7 +280,6 @@ static const struct sunxi_ccu_desc sun50i_h5_de2_clk_desc = { ...@@ -280,7 +280,6 @@ static const struct sunxi_ccu_desc sun50i_h5_de2_clk_desc = {
static int sunxi_de2_clk_probe(struct platform_device *pdev) static int sunxi_de2_clk_probe(struct platform_device *pdev)
{ {
struct resource *res;
struct clk *bus_clk, *mod_clk; struct clk *bus_clk, *mod_clk;
struct reset_control *rstc; struct reset_control *rstc;
void __iomem *reg; void __iomem *reg;
...@@ -291,8 +290,7 @@ static int sunxi_de2_clk_probe(struct platform_device *pdev) ...@@ -291,8 +290,7 @@ static int sunxi_de2_clk_probe(struct platform_device *pdev)
if (!ccu_desc) if (!ccu_desc)
return -EINVAL; return -EINVAL;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); reg = devm_platform_ioremap_resource(pdev, 0);
reg = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(reg)) if (IS_ERR(reg))
return PTR_ERR(reg); return PTR_ERR(reg);
......
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