16 lines · c
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */2#ifndef __ASM_PARISC_BITSPERLONG_H3#define __ASM_PARISC_BITSPERLONG_H4 5#if defined(__LP64__)6#define __BITS_PER_LONG 647#define SHIFT_PER_LONG 68#else9#define __BITS_PER_LONG 3210#define SHIFT_PER_LONG 511#endif12 13#include <asm-generic/bitsperlong.h>14 15#endif /* __ASM_PARISC_BITSPERLONG_H */16