diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2009-06-12 02:23:24 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-06-12 02:23:24 +0200 |
commit | 17d0cdfa8f3c09a110061c67421d662b3e149d0a (patch) | |
tree | 5e707b8787db0a8571b983a6c8c1d7bf88579788 /drivers/net/ioc3-eth.c | |
parent | Merge branch 'linux-2.6.31.y' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff) | |
download | linux-17d0cdfa8f3c09a110061c67421d662b3e149d0a.tar.xz linux-17d0cdfa8f3c09a110061c67421d662b3e149d0a.zip |
net: ntohs() misuse
Some drivers incorrectly use ntohs() instead of htons()
A cleanup as htons() returns same result than ntohs(),
but better to use the proper one.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r-- | drivers/net/ioc3-eth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c index c5593f4665a4..e3cfefab670c 100644 --- a/drivers/net/ioc3-eth.c +++ b/drivers/net/ioc3-eth.c @@ -530,7 +530,7 @@ static void ioc3_tcpudp_checksum(struct sk_buff *skb, uint32_t hwsum, int len) * case where the checksum is right the higher layers will still * drop the packet as appropriate. */ - if (eh->h_proto != ntohs(ETH_P_IP)) + if (eh->h_proto != htons(ETH_P_IP)) return; ih = (struct iphdr *) ((char *)eh + ETH_HLEN); |