From: Wei Yongjun Date: Tue, 3 Sep 2019 15:36:25 +0000 (+0000) Subject: usb: cdns3: Remove redundant dev_err call in cdns3_probe() X-Git-Tag: for-linus-2019-09-27~96^2~3 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=815cdcc334048fcc2383d24d5122e58ba4b1fd3f;p=linux-block.git usb: cdns3: Remove redundant dev_err call in cdns3_probe() 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 Link: https://lore.kernel.org/r/20190903153625.85691-1-weiyongjun1@huawei.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/cdns3/core.c b/drivers/usb/cdns3/core.c index 300df58a190b..06f1e105be4e 100644 --- a/drivers/usb/cdns3/core.c +++ b/drivers/usb/cdns3/core.c @@ -462,10 +462,8 @@ static int cdns3_probe(struct platform_device *pdev) res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dev"); regs = devm_ioremap_resource(dev, res); - if (IS_ERR(regs)) { - dev_err(dev, "couldn't iomap dev resource\n"); + if (IS_ERR(regs)) return PTR_ERR(regs); - } cdns->dev_regs = regs; cdns->otg_irq = platform_get_irq_byname(pdev, "otg");