mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-17 08:43:07 +00:00
15 lines
259 B
C
15 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
|