• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
2 
3 #ifndef _LINUX_BITOPS_H_
4 #define _LINUX_BITOPS_H_
5 
6 #ifndef BITS_PER_LONG
7 # define BITS_PER_LONG __WORDSIZE
8 #endif
9 
10 #define BITS_PER_BYTE 8
11 
12 #endif
13