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

SVN-Revision: 13522
This commit is contained in:
Gabor Juhos 2008-12-05 07:15:45 +00:00
parent 95a9e47a00
commit 17cc4d671c
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@
#define ETH_FCS_LEN 4
#define AG71XX_DRV_NAME "ag71xx"
#define AG71XX_DRV_VERSION "0.5.5"
#define AG71XX_DRV_VERSION "0.5.6"
#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->protocol = eth_type_trans(skb, dev);
skb->ip_summed = CHECKSUM_UNNECESSARY;
skb->ip_summed = CHECKSUM_NONE;
netif_receive_skb(skb);