diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-26 14:31:35 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-07 14:49:40 -0500 |
commit | eff0aa47b5e668dde39a0d9d1b2de92cd5fa8f29 (patch) | |
tree | d2739fe6fd22524cf0f20ae44af8fdb3ca1ff93e | |
parent | 512369a7827b938906019bbd5a4265d04b7391e1 (diff) | |
download | u-boot-eff0aa47b5e668dde39a0d9d1b2de92cd5fa8f29.tar.gz |
sandbox: Add <asm/barrier.h>
Add a mostly empty asm/barrier.h file for sandbox where we define nop() to
be an empty function.
Reviewed-by: Sean Anderson <seanga2@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | arch/sandbox/include/asm/barrier.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/barrier.h b/arch/sandbox/include/asm/barrier.h new file mode 100644 index 00000000000..0928a78cbf8 --- /dev/null +++ b/arch/sandbox/include/asm/barrier.h @@ -0,0 +1,3 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ + +#define nop() |