diff options
Diffstat (limited to 'net/decnet/dn_table.c')
-rw-r--r-- | net/decnet/dn_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/decnet/dn_table.c b/net/decnet/dn_table.c index 3a2830ac89c2..69ad9280c693 100644 --- a/net/decnet/dn_table.c +++ b/net/decnet/dn_table.c | |||
@@ -85,7 +85,7 @@ static int dn_fib_hash_zombies; | |||
85 | 85 | ||
86 | static inline dn_fib_idx_t dn_hash(dn_fib_key_t key, struct dn_zone *dz) | 86 | static inline dn_fib_idx_t dn_hash(dn_fib_key_t key, struct dn_zone *dz) |
87 | { | 87 | { |
88 | u16 h = dn_ntohs(key.datum)>>(16 - dz->dz_order); | 88 | u16 h = le16_to_cpu(key.datum)>>(16 - dz->dz_order); |
89 | h ^= (h >> 10); | 89 | h ^= (h >> 10); |
90 | h ^= (h >> 6); | 90 | h ^= (h >> 6); |
91 | h &= DZ_HASHMASK(dz); | 91 | h &= DZ_HASHMASK(dz); |