aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/soc/img/img-i2s-out.c
diff options
context:
space:
mode:
authorYang Yingliang <yangyingliang@huawei.com>2021-06-15 21:51:57 +0800
committerMark Brown <broonie@kernel.org>2021-06-15 16:39:44 +0100
commitef43f463ddb3dc0acaf1447db22db85df5100380 (patch)
tree9e35815eb21c55bccfcedfa39198521517833527 /sound/soc/img/img-i2s-out.c
parentASoC: img-i2s-in: Use devm_platform_get_and_ioremap_resource() (diff)
downloadwireguard-linux-ef43f463ddb3dc0acaf1447db22db85df5100380.tar.xz
wireguard-linux-ef43f463ddb3dc0acaf1447db22db85df5100380.zip
ASoC: img-i2s-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/20210615135200.1661695-2-yangyingliang@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/img/img-i2s-out.c')
-rw-r--r--sound/soc/img/img-i2s-out.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/img/img-i2s-out.c b/sound/soc/img/img-i2s-out.c
index b56a18e7f3ac..4f90d36dc7df 100644
--- a/sound/soc/img/img-i2s-out.c
+++ b/sound/soc/img/img-i2s-out.c
@@ -440,8 +440,7 @@ static int img_i2s_out_probe(struct platform_device *pdev)
i2s->dev = &pdev->dev;
- res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- base = devm_ioremap_resource(&pdev->dev, res);
+ base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
if (IS_ERR(base))
return PTR_ERR(base);