mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00

This change avoids warnings when setting -Wmissing-prototypes or when using sparse tool. Signed-off-by: Yann Gautier <yann.gautier@st.com> Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
15 lines
414 B
C
15 lines
414 B
C
/*
|
|
* Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include "../bl1_private.h"
|
|
|
|
/*******************************************************************************
|
|
* TODO: Function that does the first bit of architectural setup.
|
|
******************************************************************************/
|
|
void bl1_arch_setup(void)
|
|
{
|
|
|
|
}
|