system.h 355 B

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