arch_inlines.h 655 B

12345678910111213141516171819202122232425
  1. /*
  2. * arch_inlines.h - automatically selects the correct arch_inlines.h file to
  3. * include based on the selected architecture.
  4. */
  5. /*
  6. * Copyright (c) 2019 Stephanos Ioannidis <root@stephanos.io>
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #ifndef ZEPHYR_INCLUDE_ARCH_INLINES_H_
  11. #define ZEPHYR_INCLUDE_ARCH_INLINES_H_
  12. #if defined(CONFIG_X86) || defined(CONFIG_X86_64)
  13. #include <arch/x86/arch_inlines.h>
  14. #elif defined(CONFIG_ARM64)
  15. #include <arch/arm64/arch_inlines.h>
  16. #elif defined(CONFIG_ARC)
  17. #include <arch/arc/arch_inlines.h>
  18. #elif defined(CONFIG_XTENSA)
  19. #include <arch/xtensa/arch_inlines.h>
  20. #endif
  21. #endif /* ZEPHYR_INCLUDE_ARCH_INLINES_H_ */