blob: 7933b6292e212442bd692e8dc50f19c08cd01308 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass744d9852011-10-10 08:22:14 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass744d9852011-10-10 08:22:14 +00004 */
5
6#ifndef __ASM_SANDBOX_SYSTEM_H
7#define __ASM_SANDBOX_SYSTEM_H
8
9/* Define this as nops for sandbox architecture */
Masahiro Yamada1638d982014-06-12 12:26:15 +090010#define local_irq_save(x)
Simon Glass744d9852011-10-10 08:22:14 +000011#define local_irq_enable()
12#define local_irq_disable()
13#define local_save_flags(x)
14#define local_irq_restore(x)
15
16#endif