sh: bitops: add hweight*() macros

Add hweight*() macros required for moving to new SF layer

Signed-off-by: Vignesh R <vigneshr@ti.com>
Reviewed-by: Jagan Teki <jagan@openedev.com>
This commit is contained in:
Vignesh R 2019-02-05 11:29:16 +05:30 committed by Jagan Teki
parent 6430eea639
commit ce13c19f4c

View File

@ -153,6 +153,10 @@ static inline int ffs (int x)
}
#define PLATFORM_FFS
#define hweight32(x) generic_hweight32(x)
#define hweight16(x) generic_hweight16(x)
#define hweight8(x) generic_hweight8(x)
#endif /* __KERNEL__ */
#endif /* __ASM_SH_BITOPS_H */