summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/include/linux/bitrev.h
diff options
context:
space:
mode:
Diffstat (limited to 'ANDROID_3.4.5/include/linux/bitrev.h')
-rw-r--r--ANDROID_3.4.5/include/linux/bitrev.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/ANDROID_3.4.5/include/linux/bitrev.h b/ANDROID_3.4.5/include/linux/bitrev.h
deleted file mode 100644
index 7ffe03f4..00000000
--- a/ANDROID_3.4.5/include/linux/bitrev.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef _LINUX_BITREV_H
-#define _LINUX_BITREV_H
-
-#include <linux/types.h>
-
-extern u8 const byte_rev_table[256];
-
-static inline u8 bitrev8(u8 byte)
-{
- return byte_rev_table[byte];
-}
-
-extern u16 bitrev16(u16 in);
-extern u32 bitrev32(u32 in);
-
-#endif /* _LINUX_BITREV_H */