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