]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mtd: nand: omap: Use devm_platform_get_and_ioremap_resource()
authorYangtao Li <frank.li@vivo.com>
Thu, 13 Jul 2023 10:44:22 +0000 (18:44 +0800)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Sat, 15 Jul 2023 16:05:32 +0000 (18:05 +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/20230713104422.29222-1-frank.li@vivo.com
drivers/mtd/nand/onenand/onenand_omap2.c

index ff7af98604df2cd85ba8aa06dc47df589a1dcbec..904df2d1538ee70eb558e53a6cdc897bf4d627b0 100644 (file)
@@ -467,12 +467,6 @@ static int omap2_onenand_probe(struct platform_device *pdev)
        struct device *dev = &pdev->dev;
        struct device_node *np = dev->of_node;
 
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       if (!res) {
-               dev_err(dev, "error getting memory resource\n");
-               return -EINVAL;
-       }
-
        r = of_property_read_u32(np, "reg", &val);
        if (r) {
                dev_err(dev, "reg not found in DT\n");
@@ -486,11 +480,11 @@ static int omap2_onenand_probe(struct platform_device *pdev)
        init_completion(&c->irq_done);
        init_completion(&c->dma_done);
        c->gpmc_cs = val;
-       c->phys_base = res->start;
 
-       c->onenand.base = devm_ioremap_resource(dev, res);
+       c->onenand.base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
        if (IS_ERR(c->onenand.base))
                return PTR_ERR(c->onenand.base);
+       c->phys_base = res->start;
 
        c->int_gpiod = devm_gpiod_get_optional(dev, "int", GPIOD_IN);
        if (IS_ERR(c->int_gpiod)) {