summaryrefslogtreecommitdiffstats
path: root/arch/riscv/include/asm/bitsperlong.h
blob: 4641e7e485d2332e3bb10601156f53147af9e8f3 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __ASM_BITSPERLONG_H
#define __ASM_BITSPERLONG_H

#ifdef __riscv64
#define BITS_PER_LONG 64
#else
#define BITS_PER_LONG 32
#endif

#endif /* __ASM_BITSPERLONG_H */