mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-16 01:17:01 +02:00
Rule 8.4: A compatible declaration shall be visible when an object or function with external linkage is defined Fixed for: make DEBUG=1 PLAT=fvp SPD=tspd all Change-Id: I0a16cf68fef29cf00ec0a52e47786f61d02ca4ae Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
25 lines
613 B
C
25 lines
613 B
C
/*
|
|
* Copyright (c) 2014-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef __FVP_PRIVATE_H__
|
|
#define __FVP_PRIVATE_H__
|
|
|
|
#include <plat_arm.h>
|
|
|
|
/*******************************************************************************
|
|
* Function and variable prototypes
|
|
******************************************************************************/
|
|
|
|
void fvp_config_setup(void);
|
|
|
|
void fvp_interconnect_init(void);
|
|
void fvp_interconnect_enable(void);
|
|
void fvp_interconnect_disable(void);
|
|
void tsp_early_platform_setup(void);
|
|
|
|
|
|
#endif /* __FVP_PRIVATE_H__ */
|