OSDN Git Service

mtd: rawnand: mtk: remove redundant dev_err call in mtk_ecc_probe()
authorYu Kuai <yukuai3@huawei.com>
Thu, 8 Apr 2021 11:15:12 +0000 (19:15 +0800)
committerMiquel Raynal <miquel.raynal@bootlin.com>
Mon, 10 May 2021 08:34:41 +0000 (10:34 +0200)
There is a error message within devm_ioremap_resource
already, so remove the dev_err call to avoid redundant
error message.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20210408111514.1011020-2-yukuai3@huawei.com
drivers/mtd/nand/raw/mtk_ecc.c

index 75f1fa3..c437d97 100644 (file)
@@ -515,10 +515,8 @@ static int mtk_ecc_probe(struct platform_device *pdev)
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        ecc->regs = devm_ioremap_resource(dev, res);
-       if (IS_ERR(ecc->regs)) {
-               dev_err(dev, "failed to map regs: %ld\n", PTR_ERR(ecc->regs));
+       if (IS_ERR(ecc->regs))
                return PTR_ERR(ecc->regs);
-       }
 
        ecc->clk = devm_clk_get(dev, NULL);
        if (IS_ERR(ecc->clk)) {