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
@@ -1269,10 +1269,8 @@ static int __devinit bmac_probe(struct macio_dev *mdev, const struct of_device_i
|
||||
memcpy(addr, prop_addr, sizeof(addr));
|
||||
|
||||
dev = alloc_etherdev(PRIV_BYTES);
|
||||
if (!dev) {
|
||||
printk(KERN_ERR "BMAC: alloc_etherdev failed, out of memory\n");
|
||||
if (!dev)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
bp = netdev_priv(dev);
|
||||
SET_NETDEV_DEV(dev, &mdev->ofdev.dev);
|
||||
|
@@ -147,7 +147,6 @@ static int __devinit mace_probe(struct macio_dev *mdev, const struct of_device_i
|
||||
|
||||
dev = alloc_etherdev(PRIV_BYTES);
|
||||
if (!dev) {
|
||||
printk(KERN_ERR "MACE: can't allocate ethernet device !\n");
|
||||
rc = -ENOMEM;
|
||||
goto err_release;
|
||||
}
|
||||
|
Reference in New Issue
Block a user