Commit fed64817 authored by Yangtao Li's avatar Yangtao Li Committed by Lee Jones

mfd: exynos-lpass: 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/20230706113939.1178-4-frank.li@vivo.comSigned-off-by: default avatarLee Jones <lee@kernel.org>
parent 07141cfe
...@@ -109,14 +109,12 @@ static int exynos_lpass_probe(struct platform_device *pdev) ...@@ -109,14 +109,12 @@ static int exynos_lpass_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct exynos_lpass *lpass; struct exynos_lpass *lpass;
void __iomem *base_top; void __iomem *base_top;
struct resource *res;
lpass = devm_kzalloc(dev, sizeof(*lpass), GFP_KERNEL); lpass = devm_kzalloc(dev, sizeof(*lpass), GFP_KERNEL);
if (!lpass) if (!lpass)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); base_top = devm_platform_ioremap_resource(pdev, 0);
base_top = devm_ioremap_resource(dev, res);
if (IS_ERR(base_top)) if (IS_ERR(base_top))
return PTR_ERR(base_top); return PTR_ERR(base_top);
......
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