u-boot/arch/riscv/include/asm/atomic.h
Ben Dooks 3c874711ba riscv: add generic link for <asm/atomic.h>
Add a link from <asm/atomic.h> to the generic one to allow
things like ubifs to be built. This can be extended with
riscv AMO ops at a later date.

Signed-off-by: Ben Dooks <ben.dooks@sifive.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
2023-07-06 17:28:08 +08:00

14 lines
259 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright 2023 SiFive, Inc.
*/
#ifndef __RISCV_ATOMIC_H
#define __RISCV_ATOMIC_H
/* use the generic asm/atomic.h until we define a better one */
#include <asm/system.h>
#include <asm-generic/atomic.h>
#endif