projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
badd019
)
mtd: physmap-core: Use devm_platform_get_and_ioremap_resource()
author
Yangtao Li
<frank.li@vivo.com>
Fri, 7 Jul 2023 04:06:22 +0000
(12:06 +0800)
committer
Miquel Raynal
<miquel.raynal@bootlin.com>
Wed, 12 Jul 2023 12:08:31 +0000
(14:08 +0200)
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: Yangtao Li <frank.li@vivo.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link:
https://lore.kernel.org/linux-mtd/20230707040622.78174-18-frank.li@vivo.com
drivers/mtd/maps/physmap-core.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/maps/physmap-core.c
b/drivers/mtd/maps/physmap-core.c
index
c73854d
..
78710fb
100644
(file)
--- a/
drivers/mtd/maps/physmap-core.c
+++ b/
drivers/mtd/maps/physmap-core.c
@@
-508,8
+508,7
@@
static int physmap_flash_probe(struct platform_device *dev)
for (i = 0; i < info->nmaps; i++) {
struct resource *res;
- res = platform_get_resource(dev, IORESOURCE_MEM, i);
- info->maps[i].virt = devm_ioremap_resource(&dev->dev, res);
+ info->maps[i].virt = devm_platform_get_and_ioremap_resource(dev, i, &res);
if (IS_ERR(info->maps[i].virt)) {
err = PTR_ERR(info->maps[i].virt);
goto err_out;