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 <hul...@huawei.com>
Signed-off-by: Qiheng Lin <linqih...@huawei.com>
---
 drivers/memory/fsl-corenet-cf.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/memory/fsl-corenet-cf.c b/drivers/memory/fsl-corenet-cf.c
index 0309bd5a1800..e15c962d4540 100644
--- a/drivers/memory/fsl-corenet-cf.c
+++ b/drivers/memory/fsl-corenet-cf.c
@@ -192,10 +192,8 @@ static int ccf_probe(struct platform_device *pdev)
        }
 
        ccf->regs = devm_ioremap_resource(&pdev->dev, r);
-       if (IS_ERR(ccf->regs)) {
-               dev_err(&pdev->dev, "%s: can't map mem resource\n", __func__);
+       if (IS_ERR(ccf->regs))
                return PTR_ERR(ccf->regs);
-       }
 
        ccf->dev = &pdev->dev;
        ccf->info = match->data;

Reply via email to