alarmtimer: Do not signal SIGEV_NONE timers
[pandora-kernel.git] / fs / btrfs / hash.h
index 2a020b2..db2ff97 100644 (file)
@@ -19,9 +19,9 @@
 #ifndef __HASH__
 #define __HASH__
 
-#include "crc32c.h"
+#include <linux/crc32c.h>
 static inline u64 btrfs_name_hash(const char *name, int len)
 {
-       return btrfs_crc32c((u32)~1, name, len);
+       return crc32c((u32)~1, name, len);
 }
 #endif