diff options
author | Joe Perches <joe@perches.com> | 2012-01-29 08:47:52 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-31 16:20:48 -0500 |
commit | 41de8d4cff21a2e81e3d9ff66f5f7c903f9c3ab1 (patch) | |
tree | c441a6911ff802233473f31fa29a985e690a816a /drivers/net/plip/plip.c | |
parent | e404decb0fb017be80552adee894b35307b6c7b4 (diff) |
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/plip/plip.c')
-rw-r--r-- | drivers/net/plip/plip.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/plip/plip.c b/drivers/net/plip/plip.c index a9e9ca8a86ed..1a5a316cc968 100644 --- a/drivers/net/plip/plip.c +++ b/drivers/net/plip/plip.c | |||
@@ -1260,10 +1260,8 @@ static void plip_attach (struct parport *port) | |||
1260 | 1260 | ||
1261 | sprintf(name, "plip%d", unit); | 1261 | sprintf(name, "plip%d", unit); |
1262 | dev = alloc_etherdev(sizeof(struct net_local)); | 1262 | dev = alloc_etherdev(sizeof(struct net_local)); |
1263 | if (!dev) { | 1263 | if (!dev) |
1264 | printk(KERN_ERR "plip: memory squeeze\n"); | ||
1265 | return; | 1264 | return; |
1266 | } | ||
1267 | 1265 | ||
1268 | strcpy(dev->name, name); | 1266 | strcpy(dev->name, name); |
1269 | 1267 | ||