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

net: z85230: 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 00a580db
...@@ -1531,10 +1531,9 @@ static void z8530_rx_done(struct z8530_channel *c) ...@@ -1531,10 +1531,9 @@ static void z8530_rx_done(struct z8530_channel *c)
RT_UNLOCK; RT_UNLOCK;
c->skb2 = dev_alloc_skb(c->mtu); c->skb2 = dev_alloc_skb(c->mtu);
if (!c->skb2) if (c->skb2)
netdev_warn(c->netdevice, "memory squeeze\n");
else
skb_put(c->skb2, c->mtu); skb_put(c->skb2, c->mtu);
c->netdevice->stats.rx_packets++; c->netdevice->stats.rx_packets++;
c->netdevice->stats.rx_bytes += ct; c->netdevice->stats.rx_bytes += ct;
} }
......
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