On 01/17/2017 03:22 PM, Wei Yongjun wrote: > From: Wei Yongjun <[email protected]> > > There is a error message within devm_ioremap_resource > already, so remove the dev_err call to avoid redundant > error message. > > Signed-off-by: Wei Yongjun <[email protected]>
Acked-by: Marek Vasut <[email protected]> > --- > drivers/mtd/nand/mtk_nand.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/mtd/nand/mtk_nand.c b/drivers/mtd/nand/mtk_nand.c > index 6c3eed3..6c517c6 100644 > --- a/drivers/mtd/nand/mtk_nand.c > +++ b/drivers/mtd/nand/mtk_nand.c > @@ -1383,7 +1383,6 @@ static int mtk_nfc_probe(struct platform_device *pdev) > nfc->regs = devm_ioremap_resource(dev, res); > if (IS_ERR(nfc->regs)) { > ret = PTR_ERR(nfc->regs); > - dev_err(dev, "no nfi base\n"); > goto release_ecc; > } > > > > -- Best regards, Marek Vasut

