diff options
Diffstat (limited to 'drivers/net/via-velocity.c')
-rw-r--r-- | drivers/net/via-velocity.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c index 9f6cc1569b3e..422eaf8ea12d 100644 --- a/drivers/net/via-velocity.c +++ b/drivers/net/via-velocity.c | |||
@@ -2006,7 +2006,7 @@ static int velocity_xmit(struct sk_buff *skb, struct net_device *dev) | |||
2006 | */ | 2006 | */ |
2007 | if ((vptr->flags & VELOCITY_FLAGS_TX_CSUM) | 2007 | if ((vptr->flags & VELOCITY_FLAGS_TX_CSUM) |
2008 | && (skb->ip_summed == CHECKSUM_PARTIAL)) { | 2008 | && (skb->ip_summed == CHECKSUM_PARTIAL)) { |
2009 | struct iphdr *ip = skb->nh.iph; | 2009 | const struct iphdr *ip = ip_hdr(skb); |
2010 | if (ip->protocol == IPPROTO_TCP) | 2010 | if (ip->protocol == IPPROTO_TCP) |
2011 | td_ptr->tdesc1.TCR |= TCR0_TCPCK; | 2011 | td_ptr->tdesc1.TCR |= TCR0_TCPCK; |
2012 | else if (ip->protocol == IPPROTO_UDP) | 2012 | else if (ip->protocol == IPPROTO_UDP) |