xref: /linux/tools/arch/parisc/include/uapi/asm/bitsperlong.h (revision ab520be8cd5d56867fc95cfbc34b90880faf1f9d)
1 #ifndef __ASM_PARISC_BITSPERLONG_H
2 #define __ASM_PARISC_BITSPERLONG_H
3 
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 
12 #include <asm-generic/bitsperlong.h>
13 
14 #endif /* __ASM_PARISC_BITSPERLONG_H */
15