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