mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
3c874711ba
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>
14 lines
259 B
C
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
|