aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYang Yingliang <yangyingliang@huawei.com>2021-06-17 11:29:00 +0800
committerMark Brown <broonie@kernel.org>2021-06-17 13:47:06 +0100
commit114bacc75c2189a6ed7ee208545e8d6777c94aec (patch)
tree260326cfd53f49bd5a7d2b33466af110b27afaed
parentASoC: sprd: Use devm_platform_get_and_ioremap_resource() (diff)
downloadlinux-dev-114bacc75c2189a6ed7ee208545e8d6777c94aec.tar.xz
linux-dev-114bacc75c2189a6ed7ee208545e8d6777c94aec.zip
ASoC: spear: spdif_out: Use devm_platform_get_and_ioremap_resource()
Use devm_platform_get_and_ioremap_resource() to simplify code. Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Link: https://lore.kernel.org/r/20210617032900.600124-1-yangyingliang@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/spear/spdif_out.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/spear/spdif_out.c b/sound/soc/spear/spdif_out.c
index 38f9fff5be6b..549295a6ed50 100644
--- a/sound/soc/spear/spdif_out.c
+++ b/sound/soc/spear/spdif_out.c
@@ -287,8 +287,7 @@ static int spdif_out_probe(struct platform_device *pdev)
if (!host)
return -ENOMEM;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- host->io_base = devm_ioremap_resource(&pdev->dev, res);
+ host->io_base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
if (IS_ERR(host->io_base))
return PTR_ERR(host->io_base);