atomic.h 259 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright 2023 SiFive, Inc.
  4. */
  5. #ifndef __RISCV_ATOMIC_H
  6. #define __RISCV_ATOMIC_H
  7. /* use the generic asm/atomic.h until we define a better one */
  8. #include <asm/system.h>
  9. #include <asm-generic/atomic.h>
  10. #endif