bits.h 171 B

123456789
  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. #endif /* __VDSO_BITS_H */