Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/bitops.h

    r7a0359b rd354d57  
    3636#define KERN_BITOPS_H_
    3737
    38 #include <trace.h>
    39 
    4038#ifdef __32_BITS__
    4139        #define fnzb(arg)  fnzb32(arg)
     
    5149 *
    5250 */
    53 NO_TRACE static inline uint8_t fnzb32(uint32_t arg)
     51static inline uint8_t fnzb32(uint32_t arg)
    5452{
    5553        uint8_t n = 0;
     
    8684 *
    8785 */
    88 NO_TRACE static inline uint8_t fnzb64(uint64_t arg)
     86static inline uint8_t fnzb64(uint64_t arg)
    8987{
    9088        uint8_t n = 0;
Note: See TracChangeset for help on using the changeset viewer.