blob: bc3ee9e790e965d8e3d8b00941f7e2b120c4bc35 [file] [log] [blame]
Arvind Ram Prakashe558f9c2024-11-11 14:32:37 -06001/*
2 * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef FPMR_H
8#define FPMR_H
9
10#include <context.h>
11
12#if ENABLE_FEAT_FPMR
13void fpmr_enable_per_world(per_world_context_t *per_world_ctx);
14#else
15static inline void fpmr_enable_per_world(per_world_context_t *per_world_ctx)
16{
17}
18#endif /* ENABLE_FEAT_FPMR */
19
20#endif /* FPMR_H */