diff options
author | Peng Li <lipeng321@huawei.com> | 2021-06-15 10:43:45 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-06-15 10:55:18 -0700 |
commit | 2b28b711ac5d58ed828e137ac53013f5008b0d47 (patch) | |
tree | 7a9d3e12a9f3dae5498de106bdc20e901b19240c /drivers/net/wan | |
parent | 00a580db9e2a0968e212a89a9db0b89dc4a97280 (diff) |
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: Peng Li <lipeng321@huawei.com>
Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wan')
-rw-r--r-- | drivers/net/wan/z85230.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/wan/z85230.c b/drivers/net/wan/z85230.c index 621f73060a03..982a03488a00 100644 --- a/drivers/net/wan/z85230.c +++ b/drivers/net/wan/z85230.c @@ -1531,10 +1531,9 @@ static void z8530_rx_done(struct z8530_channel *c) RT_UNLOCK; c->skb2 = dev_alloc_skb(c->mtu); - if (!c->skb2) - netdev_warn(c->netdevice, "memory squeeze\n"); - else + if (c->skb2) skb_put(c->skb2, c->mtu); + c->netdevice->stats.rx_packets++; c->netdevice->stats.rx_bytes += ct; } |