usb: gadget: Remove redundant dev_err call in r8a66597_sudmac_ioremap()
There is a error message within devm_ioremap_resource already, so remove the dev_err call to avoid redundant error message. Acked-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
734d5a5393
commit
17c128e8c8
|
@ -1846,10 +1846,8 @@ static int r8a66597_sudmac_ioremap(struct r8a66597 *r8a66597,
|
|||
|
||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "sudmac");
|
||||
r8a66597->sudmac_reg = devm_ioremap_resource(&pdev->dev, res);
|
||||
if (IS_ERR(r8a66597->sudmac_reg)) {
|
||||
dev_err(&pdev->dev, "ioremap error(sudmac).\n");
|
||||
if (IS_ERR(r8a66597->sudmac_reg))
|
||||
return PTR_ERR(r8a66597->sudmac_reg);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue