blob: 0388d1847d91ba25033d7e20c5d6512be87d91ce [file] [log] [blame]
/*
* Copyright (c) 2024, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef FGT2_H
#define FGT2_H
#include <context.h>
#if ENABLE_FEAT_FGT2
void fgt2_enable(cpu_context_t *ctx);
#else
static inline void fgt2_enable(cpu_context_t *ctx)
{
}
#endif /* ENABLE_FEAT_FGT2 */
#endif /* FGT2_H */