From: Yang Yingliang Date: Tue, 15 Jun 2021 13:51:57 +0000 (+0800) Subject: ASoC: img-i2s-out: Use devm_platform_get_and_ioremap_resource() X-Git-Tag: v5.14-rc1~95^2~6^2^2~39 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ef43f463ddb3dc0acaf1447db22db85df5100380;p=linux-block.git 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 Link: https://lore.kernel.org/r/20210615135200.1661695-2-yangyingliang@huawei.com Signed-off-by: Mark Brown --- 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);