mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 07:46:48 +00:00
ramips: fix build error caused by missing ifdef guard in hwnat code
Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
parent
424a9ae128
commit
bfed382540
@ -879,15 +879,18 @@ static int fe_poll_rx(struct napi_struct *napi, int budget,
|
||||
skb_checksum_none_assert(skb);
|
||||
skb->protocol = eth_type_trans(skb, netdev);
|
||||
|
||||
#ifdef CONFIG_NET_MEDIATEK_OFFLOAD
|
||||
if (mtk_offload_check_rx(priv, skb, trxd.rxd4) == 0) {
|
||||
#endif
|
||||
stats->rx_packets++;
|
||||
stats->rx_bytes += pktlen;
|
||||
|
||||
napi_gro_receive(napi, skb);
|
||||
#ifdef CONFIG_NET_MEDIATEK_OFFLOAD
|
||||
} else {
|
||||
dev_kfree_skb(skb);
|
||||
}
|
||||
|
||||
#endif
|
||||
ring->rx_data[idx] = new_data;
|
||||
rxd->rxd1 = (unsigned int)dma_addr;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user