Changes in kernel/generic/include/bitops.h [d354d57:7a0359b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/bitops.h
rd354d57 r7a0359b 36 36 #define KERN_BITOPS_H_ 37 37 38 #include <trace.h> 39 38 40 #ifdef __32_BITS__ 39 41 #define fnzb(arg) fnzb32(arg) … … 49 51 * 50 52 */ 51 static inline uint8_t fnzb32(uint32_t arg)53 NO_TRACE static inline uint8_t fnzb32(uint32_t arg) 52 54 { 53 55 uint8_t n = 0; … … 84 86 * 85 87 */ 86 static inline uint8_t fnzb64(uint64_t arg)88 NO_TRACE static inline uint8_t fnzb64(uint64_t arg) 87 89 { 88 90 uint8_t n = 0;
Note:
See TracChangeset
for help on using the changeset viewer.