mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2026-07-08 04:02:04 +00:00
MISRA violation C2012-8.4: A compatible declaration shall be visible when an object or function with external linkage is defined. Added visible prototype to fix this violation. Change-Id: Iba9c2c27160826e11c7cb8f2c0bff717d8da7f77 Signed-off-by: Suraj Kakade <suraj.hanumantkakade@amd.com>
26 lines
800 B
C
26 lines
800 B
C
/*
|
|
* Copyright (c) 2013-2025, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef BL31_H
|
|
#define BL31_H
|
|
|
|
#include <stdint.h>
|
|
|
|
/*******************************************************************************
|
|
* Function prototypes
|
|
******************************************************************************/
|
|
void bl31_next_el_arch_setup(uint32_t security_state);
|
|
void bl31_set_next_image_type(uint32_t security_state);
|
|
void bl31_prepare_next_image_entry(void);
|
|
void bl31_register_bl32_init(int32_t (*func)(void));
|
|
void bl31_register_rmm_init(int32_t (*func)(void));
|
|
void bl31_warm_entrypoint(void);
|
|
void bl31_warmboot(void);
|
|
void bl31_main(u_register_t arg0, u_register_t arg1, u_register_t arg2,
|
|
u_register_t arg3);
|
|
|
|
#endif /* BL31_H */
|