1 /* SPDX-License-Identifier: GPL-2.0 */ 1 2 #ifndef _ASM_GENERIC_BITOPS_BUILTIN___FLS_H_ 3 #define _ASM_GENERIC_BITOPS_BUILTIN___FLS_H_ 4 5 /** 6 * __fls - find last (most-significant) set bi 7 * @word: the word to search 8 * 9 * Undefined if no set bit exists, so code sho 10 */ 11 static __always_inline unsigned int __fls(unsi 12 { 13 return (sizeof(word) * 8) - 1 - __buil 14 } 15 16 #endif 17
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.