bitops.h 452 B

12345678910111213141516171819
  1. /*
  2. * (C) Copyright 2011, Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __ASM_OPENRISC_BITOPS_H
  7. #define __ASM_OPENRISC_BITOPS_H
  8. #define PLATFORM_FLS
  9. #include <asm/bitops/fls.h>
  10. #define PLATFORM_FFS
  11. #include <asm/bitops/ffs.h>
  12. #define hweight32(x) generic_hweight32(x)
  13. #define hweight16(x) generic_hweight16(x)
  14. #define hweight8(x) generic_hweight8(x)
  15. #endif /* __ASM_GENERIC_BITOPS_H */