xref: /arm-trusted-firmware/plat/arm/board/fvp_ve/sp_min/fvp_ve_sp_min_setup.c (revision 91f16700b400a8c0651d24a598fc48ee2997a0d7)
1 /*
2  * Copyright (c) 2019, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <assert.h>
8 
9 #include <plat/arm/common/plat_arm.h>
10 
11 void plat_arm_sp_min_early_platform_setup(u_register_t arg0, u_register_t arg1,
12 			u_register_t arg2, u_register_t arg3)
13 {
14 	arm_sp_min_early_platform_setup((void *)arg0, arg1, arg2, (void *)arg3);
15 }
16