trbe.h 379 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2021-2023, Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef TRBE_H
  7. #define TRBE_H
  8. #if ENABLE_TRBE_FOR_NS
  9. void trbe_init_el3(void);
  10. void trbe_init_el2_unused(void);
  11. #else
  12. static inline void trbe_init_el3(void)
  13. {
  14. }
  15. static inline void trbe_init_el2_unused(void)
  16. {
  17. }
  18. #endif /* ENABLE_TRBE_FOR_NS */
  19. #endif /* TRBE_H */