barrier.h 241 B

1234567891011
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_BARRIER_H
  3. #define __ASM_BARRIER_H
  4. #define mb() asm volatile ("l.msync" ::: "memory")
  5. #define nop() asm volatile ("l.nop")
  6. #include <asm-generic/barrier.h>
  7. #endif /* __ASM_BARRIER_H */