diff options
Diffstat (limited to 'drivers/net/atl1e')
-rw-r--r-- | drivers/net/atl1e/atl1e_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/atl1e/atl1e_main.c b/drivers/net/atl1e/atl1e_main.c index e1ae10cf30c1..9fc6d6d9060e 100644 --- a/drivers/net/atl1e/atl1e_main.c +++ b/drivers/net/atl1e/atl1e_main.c | |||
@@ -1602,7 +1602,7 @@ static u16 atl1e_cal_tdp_req(const struct sk_buff *skb) | |||
1602 | } | 1602 | } |
1603 | 1603 | ||
1604 | if (skb_is_gso(skb)) { | 1604 | if (skb_is_gso(skb)) { |
1605 | if (skb->protocol == ntohs(ETH_P_IP) || | 1605 | if (skb->protocol == htons(ETH_P_IP) || |
1606 | (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6)) { | 1606 | (skb_shinfo(skb)->gso_type == SKB_GSO_TCPV6)) { |
1607 | proto_hdr_len = skb_transport_offset(skb) + | 1607 | proto_hdr_len = skb_transport_offset(skb) + |
1608 | tcp_hdrlen(skb); | 1608 | tcp_hdrlen(skb); |
@@ -1878,7 +1878,7 @@ static int atl1e_xmit_frame(struct sk_buff *skb, struct net_device *netdev) | |||
1878 | TPD_VLAN_SHIFT; | 1878 | TPD_VLAN_SHIFT; |
1879 | } | 1879 | } |
1880 | 1880 | ||
1881 | if (skb->protocol == ntohs(ETH_P_8021Q)) | 1881 | if (skb->protocol == htons(ETH_P_8021Q)) |
1882 | tpd->word3 |= 1 << TPD_VL_TAGGED_SHIFT; | 1882 | tpd->word3 |= 1 << TPD_VL_TAGGED_SHIFT; |
1883 | 1883 | ||
1884 | if (skb_network_offset(skb) != ETH_HLEN) | 1884 | if (skb_network_offset(skb) != ETH_HLEN) |