Commit d5e686e8 authored by Peng Li's avatar Peng Li Committed by David S. Miller

net: lapbether: remove unnecessary out of memory message

This patch removes unnecessary out of memory message,
to fix the following checkpatch.pl warning:
"WARNING: Possible unnecessary 'out of memory' message"
Signed-off-by: default avatarPeng Li <lipeng321@huawei.com>
Signed-off-by: default avatarGuangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2e350780
...@@ -266,10 +266,8 @@ static void lapbeth_connected(struct net_device *dev, int reason) ...@@ -266,10 +266,8 @@ static void lapbeth_connected(struct net_device *dev, int reason)
unsigned char *ptr; unsigned char *ptr;
struct sk_buff *skb = __dev_alloc_skb(1, GFP_ATOMIC | __GFP_NOMEMALLOC); struct sk_buff *skb = __dev_alloc_skb(1, GFP_ATOMIC | __GFP_NOMEMALLOC);
if (!skb) { if (!skb)
pr_err("out of memory\n");
return; return;
}
ptr = skb_put(skb, 1); ptr = skb_put(skb, 1);
*ptr = X25_IFACE_CONNECT; *ptr = X25_IFACE_CONNECT;
...@@ -286,10 +284,8 @@ static void lapbeth_disconnected(struct net_device *dev, int reason) ...@@ -286,10 +284,8 @@ static void lapbeth_disconnected(struct net_device *dev, int reason)
unsigned char *ptr; unsigned char *ptr;
struct sk_buff *skb = __dev_alloc_skb(1, GFP_ATOMIC | __GFP_NOMEMALLOC); struct sk_buff *skb = __dev_alloc_skb(1, GFP_ATOMIC | __GFP_NOMEMALLOC);
if (!skb) { if (!skb)
pr_err("out of memory\n");
return; return;
}
ptr = skb_put(skb, 1); ptr = skb_put(skb, 1);
*ptr = X25_IFACE_DISCONNECT; *ptr = X25_IFACE_DISCONNECT;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment