bits.h 209 B

12345678910
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __VDSO_BITS_H
  3. #define __VDSO_BITS_H
  4. #include <vdso/const.h>
  5. #define BIT(nr) (UL(1) << (nr))
  6. #define BIT_ULL(nr) (ULL(1) << (nr))
  7. #endif /* __VDSO_BITS_H */