fgt2.h 333 B

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