diff options
Diffstat (limited to 'drivers/net/ioc3-eth.c')
-rw-r--r-- | drivers/net/ioc3-eth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c index ea07aa5ba51b..d375e786b4b3 100644 --- a/drivers/net/ioc3-eth.c +++ b/drivers/net/ioc3-eth.c | |||
@@ -1393,9 +1393,9 @@ static int ioc3_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
1393 | * manually. | 1393 | * manually. |
1394 | */ | 1394 | */ |
1395 | if (skb->ip_summed == CHECKSUM_PARTIAL) { | 1395 | if (skb->ip_summed == CHECKSUM_PARTIAL) { |
1396 | int proto = ntohs(skb->nh.iph->protocol); | 1396 | const struct iphdr *ih = ip_hdr(skb); |
1397 | const int proto = ntohs(ih->protocol); | ||
1397 | unsigned int csoff; | 1398 | unsigned int csoff; |
1398 | struct iphdr *ih = skb->nh.iph; | ||
1399 | uint32_t csum, ehsum; | 1399 | uint32_t csum, ehsum; |
1400 | uint16_t *eh; | 1400 | uint16_t *eh; |
1401 | 1401 | ||