Changeset 09b859c in mainline for kernel/generic/include/bitops.h
- Timestamp:
- 2010-07-07T18:37:44Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 77385fe
- Parents:
- e2ea4ab1 (diff), 22c3444 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/bitops.h
re2ea4ab1 r09b859c 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.