RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / asm-generic / bitops / arch_hweight.h
blob6a211f40665c02c8e2083b4966eb9c0d0616e9fb
1 #ifndef _ASM_GENERIC_BITOPS_ARCH_HWEIGHT_H_
2 #define _ASM_GENERIC_BITOPS_ARCH_HWEIGHT_H_
4 #include <asm/types.h>
6 static inline unsigned int __arch_hweight32(unsigned int w)
8 return __sw_hweight32(w);
11 static inline unsigned int __arch_hweight16(unsigned int w)
13 return __sw_hweight16(w);
16 static inline unsigned int __arch_hweight8(unsigned int w)
18 return __sw_hweight8(w);
21 static inline unsigned long __arch_hweight64(__u64 w)
23 return __sw_hweight64(w);
25 #endif /* _ASM_GENERIC_BITOPS_HWEIGHT_H_ */