Home | History | Annotate | Line # | Download | only in linux
      1 // SPDX-License-Identifier: MIT
      2 /*
      3  * Copyright  2020 The NetBSD Foundation, Inc.
      4  */
      5 
      6 #ifndef _LINUX_BITS_H_
      7 #define _LINUX_BITS_H_
      8 
      9 #include <sys/param.h>
     10 #include <sys/cdefs.h>
     11 
     12 #define BIT_MASK(__n) __BITS(__n-1,0)
     13 
     14 #endif /* _LINUX_BITS_H_ */
     15