1 /* 2 * Copyright (c) 2024, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef __INTERRUPTS_BL2_H__ 8 #define __INTERRUPTS_BL2_H__ 9 10 #include <stdint.h> 11 12 /* Setup all BL2 interrupt handlers in the IRQ vector table */ 13 int32_t interrupts_bl2_init(void); 14 15 #endif /* __INTERRUPTS_BL2_H__ */ 16