Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
13 lines
210 B
C
13 lines
210 B
C
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
|
|
|
|
#ifndef _LINUX_BITOPS_H_
|
|
#define _LINUX_BITOPS_H_
|
|
|
|
#ifndef BITS_PER_LONG
|
|
# define BITS_PER_LONG __WORDSIZE
|
|
#endif
|
|
|
|
#define BITS_PER_BYTE 8
|
|
|
|
#endif
|