bitops.h 401 B

12345678910111213141516
  1. #ifndef _ASM_SCORE_BITOPS_H
  2. #define _ASM_SCORE_BITOPS_H
  3. #include <asm/byteorder.h> /* swab32 */
  4. #include <asm/system.h> /* save_flags */
  5. /*
  6. * clear_bit() doesn't provide any barrier for the compiler.
  7. */
  8. #define smp_mb__before_clear_bit() barrier()
  9. #define smp_mb__after_clear_bit() barrier()
  10. #include <asm-generic/bitops.h>
  11. #include <asm-generic/bitops/__fls.h>
  12. #endif /* _ASM_SCORE_BITOPS_H */