Changeset 637 for GPL/branches/uniaud32-next/include/linux/bitops.h
- Timestamp:
- Jan 7, 2021, 8:54:42 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/include/linux/bitops.h
r615 r637 41 41 * Undefined if no bit exists, so code should check against 0 first. 42 42 */ 43 static unsigned long __ffs(unsigned long word)43 static inline unsigned long __ffs(unsigned long word) 44 44 { 45 45 int num = 0; … … 78 78 * Undefined if no set bit exists, so code should check against 0 first. 79 79 */ 80 static unsigned long __fls(unsigned long word)80 static inline unsigned long __fls(unsigned long word) 81 81 { 82 82 int num = BITS_PER_LONG - 1;
Note:
See TracChangeset
for help on using the changeset viewer.