diff options
author | Yang Yingliang <yangyingliang@huawei.com> | 2021-06-15 15:51:57 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-06-15 17:39:44 +0200 |
commit | ef43f463ddb3dc0acaf1447db22db85df5100380 (patch) | |
tree | 9e35815eb21c55bccfcedfa39198521517833527 /sound/soc/img | |
parent | ASoC: img-i2s-in: Use devm_platform_get_and_ioremap_resource() (diff) | |
download | linux-ef43f463ddb3dc0acaf1447db22db85df5100380.tar.xz 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')
-rw-r--r-- | sound/soc/img/img-i2s-out.c | 3 |
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); |