openwrtv3/target/linux/lantiq/patches-3.14/0100-lantiq-xrx200-strip-fcs.patch
John Crispin 12b73579e4 lantiq: update to 3.14
Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 42188
2014-08-18 13:09:30 +00:00

11 lines
479 B
Diff

--- a/drivers/net/ethernet/lantiq_xrx200.c
+++ b/drivers/net/ethernet/lantiq_xrx200.c
@@ -933,7 +933,7 @@ static void xrx200_hw_receive(struct xrx
struct xrx200_priv *priv = netdev_priv(dev);
struct ltq_dma_desc *desc = &ch->dma.desc_base[ch->dma.desc];
struct sk_buff *skb = ch->skb[ch->dma.desc];
- int len = (desc->ctl & LTQ_DMA_SIZE_MASK) - ETH_FCS_LEN;
+ int len = (desc->ctl & LTQ_DMA_SIZE_MASK);
unsigned long flags;
spin_lock_irqsave(&priv->hw->lock, flags);