net: lapbether: remove unnecessary out of memory message
authorPeng Li <lipeng321@huawei.com>
Wed, 9 Jun 2021 09:39:51 +0000 (17:39 +0800)
committerDavid S. Miller <davem@davemloft.net>
Wed, 9 Jun 2021 21:02:58 +0000 (14:02 -0700)
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: Peng Li <lipeng321@huawei.com>
Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/wan/lapbether.c

index 169b323..705a898 100644 (file)
@@ -266,10 +266,8 @@ static void lapbeth_connected(struct net_device *dev, int reason)
        unsigned char *ptr;
        struct sk_buff *skb = __dev_alloc_skb(1, GFP_ATOMIC | __GFP_NOMEMALLOC);
 
-       if (!skb) {
-               pr_err("out of memory\n");
+       if (!skb)
                return;
-       }
 
        ptr  = skb_put(skb, 1);
        *ptr = X25_IFACE_CONNECT;
@@ -286,10 +284,8 @@ static void lapbeth_disconnected(struct net_device *dev, int reason)
        unsigned char *ptr;
        struct sk_buff *skb = __dev_alloc_skb(1, GFP_ATOMIC | __GFP_NOMEMALLOC);
 
-       if (!skb) {
-               pr_err("out of memory\n");
+       if (!skb)
                return;
-       }
 
        ptr  = skb_put(skb, 1);
        *ptr = X25_IFACE_DISCONNECT;