Skip to content

Commit

Permalink
lib: export bitrev16
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
hharrison authored and torvalds committed Jun 6, 2008
1 parent f2eb432 commit 3527fb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/linux/bitrev.h
Expand Up @@ -10,6 +10,7 @@ static inline u8 bitrev8(u8 byte)
return byte_rev_table[byte]; return byte_rev_table[byte];
} }


extern u16 bitrev16(u16 in);
extern u32 bitrev32(u32 in); extern u32 bitrev32(u32 in);


#endif /* _LINUX_BITREV_H */ #endif /* _LINUX_BITREV_H */
3 changes: 2 additions & 1 deletion lib/bitrev.c
Expand Up @@ -42,10 +42,11 @@ const u8 byte_rev_table[256] = {
}; };
EXPORT_SYMBOL_GPL(byte_rev_table); EXPORT_SYMBOL_GPL(byte_rev_table);


static __always_inline u16 bitrev16(u16 x) u16 bitrev16(u16 x)
{ {
return (bitrev8(x & 0xff) << 8) | bitrev8(x >> 8); return (bitrev8(x & 0xff) << 8) | bitrev8(x >> 8);
} }
EXPORT_SYMBOL(bitrev16);


/** /**
* bitrev32 - reverse the order of bits in a u32 value * bitrev32 - reverse the order of bits in a u32 value
Expand Down

0 comments on commit 3527fb3

Please sign in to comment.