blob: 02beed35a775b1596257296bb6607d1848fb1691 [file] [log] [blame]
Simon Glass744d9852011-10-10 08:22:14 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02004 * SPDX-License-Identifier: GPL-2.0+
Simon Glass744d9852011-10-10 08:22:14 +00005 */
6
7#ifndef __ASM_SANDBOX_SYSTEM_H
8#define __ASM_SANDBOX_SYSTEM_H
9
10/* Define this as nops for sandbox architecture */
Masahiro Yamada1638d982014-06-12 12:26:15 +090011#define local_irq_save(x)
Simon Glass744d9852011-10-10 08:22:14 +000012#define local_irq_enable()
13#define local_irq_disable()
14#define local_save_flags(x)
15#define local_irq_restore(x)
16
17#endif