blob: 37271dd32633757e50361d5a0439f5f70ca580cd [file] [log] [blame]
#ifndef LINUX__BITS_H_
#define LINUX__BITS_H_
#define GENMASK(h, l) \
((~0UL - (1UL << (l)) + 1) & \
(~0UL >> (BITS_PER_LONG - 1 - (h))))
#endif /* LINUX__BITS_H */