OSDN Git Service

net: moxa: remove redundant dev_err call in moxart_mac_probe()
authorGuobin Huang <huangguobin4@huawei.com>
Sat, 27 Mar 2021 10:37:54 +0000 (18:37 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 29 Mar 2021 01:06:50 +0000 (18:06 -0700)
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: Guobin Huang <huangguobin4@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/moxa/moxart_ether.c

index 49fd843..b857339 100644 (file)
@@ -485,7 +485,6 @@ static int moxart_mac_probe(struct platform_device *pdev)
        ndev->base_addr = res->start;
        priv->base = devm_ioremap_resource(p_dev, res);
        if (IS_ERR(priv->base)) {
-               dev_err(p_dev, "devm_ioremap_resource failed\n");
                ret = PTR_ERR(priv->base);
                goto init_fail;
        }