hash.h: remove unused define directive
[linux-2.6-block.git] / tools / include / linux / hash.h
index ad6fa21d977b59fb938bde3c7e727deb24b28fca..38edaa08f862938ec8418d7930457fc2e10ebba2 100644 (file)
@@ -62,10 +62,7 @@ static inline u32 __hash_32_generic(u32 val)
        return val * GOLDEN_RATIO_32;
 }
 
-#ifndef HAVE_ARCH_HASH_32
-#define hash_32 hash_32_generic
-#endif
-static inline u32 hash_32_generic(u32 val, unsigned int bits)
+static inline u32 hash_32(u32 val, unsigned int bits)
 {
        /* High bits are more random, so use them. */
        return __hash_32(val) >> (32 - bits);