summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/maps
diff options
context:
space:
mode:
authorYangtao Li <frank.li@vivo.com>2023-07-07 12:06:22 +0800
committerMiquel Raynal <miquel.raynal@bootlin.com>2023-07-12 14:08:31 +0200
commite1666cfd78222ae145ac260368f29fa443d97b3f (patch)
tree4abe580a9ae9464108b1695ead4be7867532e698 /drivers/mtd/maps
parentbadd019b4a2a44815e976a0108dd8e52a1a24a83 (diff)
downloadlinux-e1666cfd78222ae145ac260368f29fa443d97b3f.tar.gz
linux-e1666cfd78222ae145ac260368f29fa443d97b3f.tar.bz2
linux-e1666cfd78222ae145ac260368f29fa443d97b3f.zip
mtd: physmap-core: 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: 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
Diffstat (limited to 'drivers/mtd/maps')
-rw-r--r--drivers/mtd/maps/physmap-core.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/maps/physmap-core.c b/drivers/mtd/maps/physmap-core.c
index c73854da5136..78710fbc8e7f 100644
--- 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;