bitops.h 360 B

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