brbe.h 342 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2022-2024, Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef BRBE_H
  7. #define BRBE_H
  8. #include <context.h>
  9. #if ENABLE_BRBE_FOR_NS
  10. void brbe_enable(cpu_context_t *ctx);
  11. #else
  12. static inline void brbe_enable(cpu_context_t *ctx)
  13. {
  14. }
  15. #endif /* ENABLE_BRBE_FOR_NS */
  16. #endif /* BRBE_H */