2023-03-22 06:14:15

by ye.xingchen

[permalink] [raw]
Subject: [PATCH] ASoC: ti: omap-mcpdm: use devm_platform_ioremap_resource_byname()

From: Ye Xingchen <[email protected]>

Convert platform_get_resource_byname(),devm_ioremap_resource() to a single
call to devm_platform_ioremap_resource_byname(), as this is exactly what
this function does.

Signed-off-by: Ye Xingchen <[email protected]>
---
sound/soc/ti/omap-mcpdm.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/ti/omap-mcpdm.c b/sound/soc/ti/omap-mcpdm.c
index 0b18a7bfd3fd..35deceb73427 100644
--- a/sound/soc/ti/omap-mcpdm.c
+++ b/sound/soc/ti/omap-mcpdm.c
@@ -563,8 +563,7 @@ static int asoc_mcpdm_probe(struct platform_device *pdev)
mcpdm->dma_data[0].filter_data = "dn_link";
mcpdm->dma_data[1].filter_data = "up_link";

- res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "mpu");
- mcpdm->io_base = devm_ioremap_resource(&pdev->dev, res);
+ mcpdm->io_base = devm_platform_ioremap_resource_byname(pdev, "mpu");
if (IS_ERR(mcpdm->io_base))
return PTR_ERR(mcpdm->io_base);

--
2.25.1


2023-04-04 11:45:04

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH] ASoC: ti: omap-mcpdm: use devm_platform_ioremap_resource_byname()

On Wed, Mar 22, 2023 at 02:11:11PM +0800, [email protected] wrote:
> From: Ye Xingchen <[email protected]>
>
> Convert platform_get_resource_byname(),devm_ioremap_resource() to a single
> call to devm_platform_ioremap_resource_byname(), as this is exactly what
> this function does.

This doesn't apply against current code, please check and resend.


Attachments:
(No filename) (369.00 B)
signature.asc (499.00 B)
Download all attachments