Commit 114bacc7 authored by Yang Yingliang's avatar Yang Yingliang Committed by Mark Brown

ASoC: spear: spdif_out: Use devm_platform_get_and_ioremap_resource()

Use devm_platform_get_and_ioremap_resource() to simplify
code.
Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20210617032900.600124-1-yangyingliang@huawei.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 19b71456
...@@ -287,8 +287,7 @@ static int spdif_out_probe(struct platform_device *pdev) ...@@ -287,8 +287,7 @@ static int spdif_out_probe(struct platform_device *pdev)
if (!host) if (!host)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); host->io_base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
host->io_base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(host->io_base)) if (IS_ERR(host->io_base))
return PTR_ERR(host->io_base); return PTR_ERR(host->io_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