xref: /rk3399_rockchip-uboot/arch/sandbox/include/asm/system.h (revision ddd960e6c4b8412fa5c5a35f36cc3ac9f3ffbc16)
1 /*
2  * Copyright (c) 2011 The Chromium OS Authors.
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 
7 #ifndef __ASM_SANDBOX_SYSTEM_H
8 #define __ASM_SANDBOX_SYSTEM_H
9 
10 /* Define this as nops for sandbox architecture */
11 #define local_irq_save(x)
12 #define local_irq_enable()
13 #define local_irq_disable()
14 #define local_save_flags(x)
15 #define local_irq_restore(x)
16 
17 #endif
18