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