summaryrefslogtreecommitdiffstats
path: root/sound/soc/dwc
diff options
context:
space:
mode:
authorYang Yingliang <yangyingliang@huawei.com>2021-06-15 21:29:33 +0800
committerMark Brown <broonie@kernel.org>2021-06-15 16:39:42 +0100
commit1f65c9bdd6dd7bd292cfadfb135f660aeaa928f1 (patch)
tree5ad16b22c3cb5450bb90ec0f3d9c583cde55643d /sound/soc/dwc
parentb90d9398d6ff6f518f352c39176450dbaf99e276 (diff)
downloadlinux-stable-1f65c9bdd6dd7bd292cfadfb135f660aeaa928f1.tar.gz
linux-stable-1f65c9bdd6dd7bd292cfadfb135f660aeaa928f1.tar.bz2
linux-stable-1f65c9bdd6dd7bd292cfadfb135f660aeaa928f1.zip
ASoC: dwc: dwc-i2s: 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/20210615132933.1372463-1-yangyingliang@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/dwc')
-rw-r--r--sound/soc/dwc/dwc-i2s.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/dwc/dwc-i2s.c b/sound/soc/dwc/dwc-i2s.c
index fd4160289fac..8ebf76e04702 100644
--- a/sound/soc/dwc/dwc-i2s.c
+++ b/sound/soc/dwc/dwc-i2s.c
@@ -636,8 +636,7 @@ static int dw_i2s_probe(struct platform_device *pdev)
dw_i2s_dai->ops = &dw_i2s_dai_ops;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- dev->i2s_base = devm_ioremap_resource(&pdev->dev, res);
+ dev->i2s_base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
if (IS_ERR(dev->i2s_base))
return PTR_ERR(dev->i2s_base);