diff options
author | Joe Perches <joe@perches.com> | 2012-01-29 07:56:23 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-31 16:20:21 -0500 |
commit | e404decb0fb017be80552adee894b35307b6c7b4 (patch) | |
tree | 19b2324328eb1f8cef599f9f164dc9ca6e5699c9 /drivers/net/slip/slip.c | |
parent | 5f3d9cb2962967d9d7e03abb4a7ca275a9a3fea5 (diff) |
drivers/net: Remove unnecessary k.alloc/v.alloc OOM messages
alloc failures use dump_stack so emitting an additional
out-of-memory message is an unnecessary duplication.
Remove the allocation failure messages.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/slip/slip.c')
-rw-r--r-- | drivers/net/slip/slip.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/slip/slip.c b/drivers/net/slip/slip.c index ba08341fb92c..69345dfae0fd 100644 --- a/drivers/net/slip/slip.c +++ b/drivers/net/slip/slip.c | |||
@@ -1296,10 +1296,8 @@ static int __init slip_init(void) | |||
1296 | 1296 | ||
1297 | slip_devs = kzalloc(sizeof(struct net_device *)*slip_maxdev, | 1297 | slip_devs = kzalloc(sizeof(struct net_device *)*slip_maxdev, |
1298 | GFP_KERNEL); | 1298 | GFP_KERNEL); |
1299 | if (!slip_devs) { | 1299 | if (!slip_devs) |
1300 | printk(KERN_ERR "SLIP: Can't allocate slip devices array.\n"); | ||
1301 | return -ENOMEM; | 1300 | return -ENOMEM; |
1302 | } | ||
1303 | 1301 | ||
1304 | /* Fill in our line protocol discipline, and register it */ | 1302 | /* Fill in our line protocol discipline, and register it */ |
1305 | status = tty_register_ldisc(N_SLIP, &sl_ldisc); | 1303 | status = tty_register_ldisc(N_SLIP, &sl_ldisc); |