mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
3527fb326f
Bluetooth will be able to use this. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Cc: Marcel Holtmann <marcel@holtmann.org> Cc: Dave Young <hidave.darkstar@gmail.com> Cc: Akinobu Mita <akinobu.mita@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
16 lines
270 B
C
16 lines
270 B
C
#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 */
|