1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

[ar71xx] ag71xx driver: don't use CHECKSUM_UNNECCESARY (closes #4161)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13522 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2008-12-05 07:15:45 +00:00
parent b1b942f3c3
commit 39b8ede1e7
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@
#define ETH_FCS_LEN 4 #define ETH_FCS_LEN 4
#define AG71XX_DRV_NAME "ag71xx" #define AG71XX_DRV_NAME "ag71xx"
#define AG71XX_DRV_VERSION "0.5.5" #define AG71XX_DRV_VERSION "0.5.6"
#define AG71XX_NAPI_TX 1 #define AG71XX_NAPI_TX 1

View File

@@ -627,7 +627,7 @@ static int ag71xx_rx_packets(struct ag71xx *ag, int limit)
skb->dev = dev; skb->dev = dev;
skb->protocol = eth_type_trans(skb, dev); skb->protocol = eth_type_trans(skb, dev);
skb->ip_summed = CHECKSUM_UNNECESSARY; skb->ip_summed = CHECKSUM_NONE;
netif_receive_skb(skb); netif_receive_skb(skb);