aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/patches-3.14/0100-lantiq-xrx200-strip-fcs.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2014-08-18 13:09:30 +0000
committerJohn Crispin <john@openwrt.org>2014-08-18 13:09:30 +0000
commit12b73579e4da2c4ceaf00462ce16ddb0eb6ffaf4 (patch)
treea03125bc8c0a4d9ae0d45e525e8a51d48bf58fa3 /target/linux/lantiq/patches-3.14/0100-lantiq-xrx200-strip-fcs.patch
parent860e01d7c443985dc583cbf2da189790054b9e0e (diff)
downloadupstream-12b73579e4da2c4ceaf00462ce16ddb0eb6ffaf4.tar.gz
upstream-12b73579e4da2c4ceaf00462ce16ddb0eb6ffaf4.tar.bz2
upstream-12b73579e4da2c4ceaf00462ce16ddb0eb6ffaf4.zip
lantiq: update to 3.14
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 42188
Diffstat (limited to 'target/linux/lantiq/patches-3.14/0100-lantiq-xrx200-strip-fcs.patch')
-rw-r--r--target/linux/lantiq/patches-3.14/0100-lantiq-xrx200-strip-fcs.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/lantiq/patches-3.14/0100-lantiq-xrx200-strip-fcs.patch b/target/linux/lantiq/patches-3.14/0100-lantiq-xrx200-strip-fcs.patch
new file mode 100644
index 0000000000..6b5285f2c0
--- /dev/null
+++ b/target/linux/lantiq/patches-3.14/0100-lantiq-xrx200-strip-fcs.patch
@@ -0,0 +1,11 @@
+--- 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);