From: Peng Li Date: Fri, 4 Jun 2021 07:32:08 +0000 (+0800) Subject: net: hdlc_x25: remove unnecessary out of memory message X-Git-Tag: v5.15~843^2~336^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=579ebffe797368b47b7e677fba2ecfc108ae154b;p=platform%2Fkernel%2Flinux-starfive.git net: hdlc_x25: 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: Peng Li Signed-off-by: Guangbin Huang Signed-off-by: David S. Miller --- diff --git a/drivers/net/wan/hdlc_x25.c b/drivers/net/wan/hdlc_x25.c index 86b88f2..525eb42 100644 --- a/drivers/net/wan/hdlc_x25.c +++ b/drivers/net/wan/hdlc_x25.c @@ -56,10 +56,8 @@ static void x25_connect_disconnect(struct net_device *dev, int reason, int code) unsigned char *ptr; skb = __dev_alloc_skb(1, GFP_ATOMIC | __GFP_NOMEMALLOC); - if (!skb) { - netdev_err(dev, "out of memory\n"); + if (!skb) return; - } ptr = skb_put(skb, 1); *ptr = code;