system.h 355 B

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