diff options
author | Yang Yingliang <yangyingliang@huawei.com> | 2021-06-15 09:39:19 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-06-21 13:03:15 +0100 |
commit | 664107f63888bdd8a5e1d38c8246b9508a1dc46a (patch) | |
tree | 4585f586fb76db983e4bc7733169b1748d21c454 /sound/soc/fsl/fsl_sai.c | |
parent | d9bf1e791ae61d606b0da0003ad19dbe7f252fe8 (diff) | |
download | linux-664107f63888bdd8a5e1d38c8246b9508a1dc46a.tar.bz2 |
ASoC: fsl_sai: Use devm_platform_get_and_ioremap_resource()
Use devm_platform_get_and_ioremap_resource() to simplify
code.
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Link: https://lore.kernel.org/r/20210615013922.784296-7-yangyingliang@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl/fsl_sai.c')
-rw-r--r-- | sound/soc/fsl/fsl_sai.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c index 407a45e48eee..223fcd15bfcc 100644 --- a/sound/soc/fsl/fsl_sai.c +++ b/sound/soc/fsl/fsl_sai.c @@ -1017,8 +1017,7 @@ static int fsl_sai_probe(struct platform_device *pdev) sai->is_lsb_first = of_property_read_bool(np, "lsb-first"); - 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); |