diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2020-06-24 16:06:05 -0600 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-06-25 16:16:21 -0700 |
commit | 93ab48a97af50c7c62c3c94996002949ffebf004 (patch) | |
tree | 636a3efdd0574966213cb9c8d33122b6139bc27d /drivers/net/ethernet | |
parent | e5e7d8052f6140985c03bd49ebaa0af9c2944bc6 (diff) | |
download | linux-stable-93ab48a97af50c7c62c3c94996002949ffebf004.tar.gz linux-stable-93ab48a97af50c7c62c3c94996002949ffebf004.tar.bz2 linux-stable-93ab48a97af50c7c62c3c94996002949ffebf004.zip |
hns: do not cast return value of napi_gro_receive to null
Basically no drivers care about the return value here, and there's no
__must_check that would make casting to void sensible, so remove it.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet')
-rw-r--r-- | drivers/net/ethernet/hisilicon/hns/hns_enet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/hisilicon/hns/hns_enet.c b/drivers/net/ethernet/hisilicon/hns/hns_enet.c index c117074c16e3..23f278e46975 100644 --- a/drivers/net/ethernet/hisilicon/hns/hns_enet.c +++ b/drivers/net/ethernet/hisilicon/hns/hns_enet.c @@ -699,7 +699,7 @@ static void hns_nic_rx_up_pro(struct hns_nic_ring_data *ring_data, struct net_device *ndev = ring_data->napi.dev; skb->protocol = eth_type_trans(skb, ndev); - (void)napi_gro_receive(&ring_data->napi, skb); + napi_gro_receive(&ring_data->napi, skb); } static int hns_desc_unused(struct hnae_ring *ring) |