Skip to content

Commit

Permalink
net: z85230: remove unnecessary out of memory message
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Peng Li authored and David S. Miller committed Jun 15, 2021
1 parent 00a580d commit 2b28b71
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/net/wan/z85230.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 2b28b71

Please sign in to comment.