diff options
author | Joe Perches <joe@perches.com> | 2012-01-29 14:47:52 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-31 22:20:48 +0100 |
commit | 41de8d4cff21a2e81e3d9ff66f5f7c903f9c3ab1 (patch) | |
tree | c441a6911ff802233473f31fa29a985e690a816a /drivers/net/rionet.c | |
parent | drivers/net: Remove unnecessary k.alloc/v.alloc OOM messages (diff) | |
download | linux-41de8d4cff21a2e81e3d9ff66f5f7c903f9c3ab1.tar.xz linux-41de8d4cff21a2e81e3d9ff66f5f7c903f9c3ab1.zip |
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>
Diffstat (limited to 'drivers/net/rionet.c')
-rw-r--r-- | drivers/net/rionet.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/rionet.c b/drivers/net/rionet.c index 7145714a5ec9..a57f05726b57 100644 --- a/drivers/net/rionet.c +++ b/drivers/net/rionet.c @@ -497,8 +497,6 @@ static int rionet_probe(struct rio_dev *rdev, const struct rio_device_id *id) /* Allocate our net_device structure */ ndev = alloc_etherdev(sizeof(struct rionet_private)); if (ndev == NULL) { - printk(KERN_INFO "%s: could not allocate ethernet device.\n", - DRV_NAME); rc = -ENOMEM; goto out; } |