bitsperlong.h 352 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef __ASM_PARISC_BITSPERLONG_H
  3. #define __ASM_PARISC_BITSPERLONG_H
  4. #if defined(__LP64__)
  5. #define __BITS_PER_LONG 64
  6. #define SHIFT_PER_LONG 6
  7. #else
  8. #define __BITS_PER_LONG 32
  9. #define SHIFT_PER_LONG 5
  10. #endif
  11. #include <asm-generic/bitsperlong.h>
  12. #endif /* __ASM_PARISC_BITSPERLONG_H */