]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/linux/bitrev.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / include / linux / bitrev.h
CommitLineData
0dd9c7a9 1/*
1a459660 2 * SPDX-License-Identifier: GPL-2.0+
0dd9c7a9
MD
3 *
4 * Based on bitrev from the Linux kernel, by Akinobu Mita
5 */
6
7#ifndef _LINUX_BITREV_H
8#define _LINUX_BITREV_H
9
10#include <linux/types.h>
11
12extern u8 const byte_rev_table[256];
13
14static inline u8 bitrev8(u8 byte)
15{
16 return byte_rev_table[byte];
17}
18
19u16 bitrev16(u16 in);
20u32 bitrev32(u32 in);
21
22#endif /* _LINUX_BITREV_H */