drivers/net: Remove alloc_etherdev error messages
alloc_etherdev has a generic OOM/unable to alloc message. Remove the duplicative messages after alloc_etherdev calls. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
e404decb0f
commit
41de8d4cff
@@ -1801,10 +1801,8 @@ struct stmmac_priv *stmmac_dvr_probe(struct device *device,
|
||||
struct stmmac_priv *priv;
|
||||
|
||||
ndev = alloc_etherdev(sizeof(struct stmmac_priv));
|
||||
if (!ndev) {
|
||||
pr_err("%s: ERROR: allocating the device\n", __func__);
|
||||
if (!ndev)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
SET_NETDEV_DEV(ndev, device);
|
||||
|
||||
|
Reference in New Issue
Block a user