diff options
author | YueHaibing <yuehaibing@huawei.com> | 2019-07-27 17:07:19 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-07-31 13:09:57 +0200 |
commit | 1c63223cda84fb10643938e4e4eb02110f8ae9a2 (patch) | |
tree | 5aac9d3ea14e319057b438d1b781467a569bcf57 /sound/soc/stm | |
parent | ASoC: sun8i-codec: use devm_platform_ioremap_resource() to simplify code (diff) | |
download | linux-1c63223cda84fb10643938e4e4eb02110f8ae9a2.tar.xz linux-1c63223cda84fb10643938e4e4eb02110f8ae9a2.zip |
ASoC: stm32: sai: use devm_platform_ioremap_resource() to simplify code
Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20190727150738.54764-16-yuehaibing@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/stm')
-rw-r--r-- | sound/soc/stm/stm32_sai.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/soc/stm/stm32_sai.c b/sound/soc/stm/stm32_sai.c index 63f68e663676..1ac5103cea78 100644 --- a/sound/soc/stm/stm32_sai.c +++ b/sound/soc/stm/stm32_sai.c @@ -152,7 +152,6 @@ static int stm32_sai_probe(struct platform_device *pdev) { struct stm32_sai_data *sai; struct reset_control *rst; - struct resource *res; const struct of_device_id *of_id; u32 val; int ret; @@ -161,8 +160,7 @@ static int stm32_sai_probe(struct platform_device *pdev) if (!sai) return -ENOMEM; - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - sai->base = devm_ioremap_resource(&pdev->dev, res); + sai->base = devm_platform_ioremap_resource(pdev, 0); if (IS_ERR(sai->base)) return PTR_ERR(sai->base); |