diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2023-02-17 11:30:05 +0300 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2023-02-17 13:55:16 +0300 |
commit | 571f235163ac83407e212b78719175236962aede (patch) | |
tree | 8807797bc63481f3bf33750d507079e04438e93c | |
parent | c5a66dd8926baa60235bc8844925c36a1b83f488 (diff) | |
download | linux-571f235163ac83407e212b78719175236962aede.tar.xz |
mmc: meson-gx: Use devm_platform_get_and_ioremap_resource()
Convert platform_get_resource(), devm_ioremap_resource() to a single
call to devm_platform_get_and_ioremap_resource(), as this is exactly
what this function does.
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Link: https://lore.kernel.org/r/20230217083005.128668-1-yang.lee@linux.alibaba.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r-- | drivers/mmc/host/meson-gx-mmc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mmc/host/meson-gx-mmc.c b/drivers/mmc/host/meson-gx-mmc.c index 641ea4292cf6..2b963a81c2ad 100644 --- a/drivers/mmc/host/meson-gx-mmc.c +++ b/drivers/mmc/host/meson-gx-mmc.c @@ -1203,8 +1203,7 @@ static int meson_mmc_probe(struct platform_device *pdev) if (ret) return dev_err_probe(&pdev->dev, ret, "device reset failed\n"); - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); - host->regs = devm_ioremap_resource(&pdev->dev, res); + host->regs = devm_platform_get_and_ioremap_resource(pdev, 0, &res); if (IS_ERR(host->regs)) return PTR_ERR(host->regs); |