All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next 1/5] ASoC: img-i2s-in: Use devm_platform_get_and_ioremap_resource()
@ 2021-06-15 13:51 ` Yang Yingliang
  0 siblings, 0 replies; 11+ messages in thread
From: Yang Yingliang @ 2021-06-15 13:51 UTC (permalink / raw)
  To: linux-kernel, alsa-devel; +Cc: lgirdwood, broonie

Use devm_platform_get_and_ioremap_resource() to simplify
code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 sound/soc/img/img-i2s-in.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/img/img-i2s-in.c b/sound/soc/img/img-i2s-in.c
index fd3432a1d6ab..1bf5d6edbd32 100644
--- a/sound/soc/img/img-i2s-in.c
+++ b/sound/soc/img/img-i2s-in.c
@@ -434,8 +434,7 @@ static int img_i2s_in_probe(struct platform_device *pdev)
 
 	i2s->dev = dev;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	base = devm_ioremap_resource(dev, res);
+	base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(base))
 		return PTR_ERR(base);
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2021-06-15 17:29 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-15 13:51 [PATCH -next 1/5] ASoC: img-i2s-in: Use devm_platform_get_and_ioremap_resource() Yang Yingliang
2021-06-15 13:51 ` Yang Yingliang
2021-06-15 13:51 ` [PATCH -next 2/5] ASoC: img-i2s-out: " Yang Yingliang
2021-06-15 13:51   ` Yang Yingliang
2021-06-15 13:51 ` [PATCH -next 3/5] ASoC: img-parallel-out: " Yang Yingliang
2021-06-15 13:51   ` Yang Yingliang
2021-06-15 13:51 ` [PATCH -next 4/5] ASoC: img-spdif-in: " Yang Yingliang
2021-06-15 13:51   ` Yang Yingliang
2021-06-15 13:52 ` [PATCH -next 5/5] ASoC: img-spdif-out: " Yang Yingliang
2021-06-15 13:52   ` Yang Yingliang
2021-06-15 17:29 ` [PATCH -next 1/5] ASoC: img-i2s-in: " Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.