projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5a66dd
)
mmc: meson-gx: Use devm_platform_get_and_ioremap_resource()
author
Yang Li
<yang.lee@linux.alibaba.com>
Fri, 17 Feb 2023 08:30:05 +0000
(16:30 +0800)
committer
Ulf Hansson
<ulf.hansson@linaro.org>
Fri, 17 Feb 2023 10:55:16 +0000
(11:55 +0100)
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>
drivers/mmc/host/meson-gx-mmc.c
patch
|
blob
|
history
diff --git
a/drivers/mmc/host/meson-gx-mmc.c
b/drivers/mmc/host/meson-gx-mmc.c
index 641ea4292cf6e62855f3bcf5088752cd814fa63b..2b963a81c2ada5471bd083a4b5c35d891b36158c 100644
(file)
--- 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);