Linux 2.6.20.8
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / bitrev.h
blob05e540d6963a3aaef3639d74f921efe7bccbd2ed
1 #ifndef _LINUX_BITREV_H
2 #define _LINUX_BITREV_H
4 #include <linux/types.h>
6 extern u8 const byte_rev_table[256];
8 static inline u8 bitrev8(u8 byte)
10 return byte_rev_table[byte];
13 extern u32 bitrev32(u32 in);
15 #endif /* _LINUX_BITREV_H */