diff mbox series

[-next,1/3] ASoC: sunxi: sun4i-codec: Use devm_platform_get_and_ioremap_resource()

Message ID 20210617045012.1119650-2-yangyingliang@huawei.com
State Accepted
Commit 37c617f1cf062b56141a06e2ae355e3ecc8b8451
Headers show
Series ASoC: sunxi: Use devm_platform_get_and_ioremap_resource() | expand

Commit Message

Yang Yingliang June 17, 2021, 4:50 a.m. UTC
Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/sunxi/sun4i-codec.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/sound/soc/sunxi/sun4i-codec.c b/sound/soc/sunxi/sun4i-codec.c
index 6f3d9148a185..da597e456beb 100644
--- a/sound/soc/sunxi/sun4i-codec.c
+++ b/sound/soc/sunxi/sun4i-codec.c
@@ -1709,8 +1709,7 @@  static int sun4i_codec_probe(struct platform_device *pdev)
 
 	scodec->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);