diff options
author | Joe Perches <joe@perches.com> | 2011-08-29 14:17:24 -0700 |
---|---|---|
committer | Marek Lindner <lindner_marek@yahoo.de> | 2011-09-08 17:52:30 +0200 |
commit | 320f422f629c7ed5d07b4186aa491d1e11d18a4c (patch) | |
tree | 8d32d97b2143abbab7bbbb19e8ef9b6e9235c2c4 /net/batman-adv/main.c | |
parent | 45485ad7d24f9f1de964b3aea8beb199dbac141c (diff) | |
download | op-kernel-dev-320f422f629c7ed5d07b4186aa491d1e11d18a4c.zip op-kernel-dev-320f422f629c7ed5d07b4186aa491d1e11d18a4c.tar.gz |
batman-adv: Remove unnecessary OOM logging messages
Removing unnecessary messages saves code and text.
Site specific OOM messages are duplications of a generic MM
out of memory message and aren't really useful, so just
delete them.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Marek Lindner <lindner_marek@yahoo.de>
Diffstat (limited to 'net/batman-adv/main.c')
-rw-r--r-- | net/batman-adv/main.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/batman-adv/main.c b/net/batman-adv/main.c index 79b9ae5..fb87bdc 100644 --- a/net/batman-adv/main.c +++ b/net/batman-adv/main.c @@ -117,8 +117,6 @@ int mesh_init(struct net_device *soft_iface) goto end; err: - pr_err("Unable to allocate memory for mesh information structures: " - "out of mem ?\n"); mesh_free(soft_iface); return -1; |