summaryrefslogtreecommitdiffstats
path: root/include/asm-generic/bitsperlong.h
blob: 836a1d4c83dd63216972e256d5c97a4d93880e94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __ASM_GENERIC_BITS_PER_LONG
#define __ASM_GENERIC_BITS_PER_LONG

#ifdef CONFIG_64BIT
#define BITS_PER_LONG 64
#else
#define BITS_PER_LONG 32
#endif /* CONFIG_64BIT */

#endif /* __ASM_GENERIC_BITS_PER_LONG */