mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-02 00:20:05 +00:00

Similar to bl31_warm_entrypoint, sp_min-based platforms may need that for special resume handling. Therefore move it from the private header to the sp_min platform header. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Change-Id: I40d9eb3ff77cff88d47c1ff51d53d9b2512cbd3e
14 lines
284 B
C
14 lines
284 B
C
/*
|
|
* Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SP_MIN_PRIVATE_H
|
|
#define SP_MIN_PRIVATE_H
|
|
|
|
void sp_min_main(void);
|
|
void sp_min_warm_boot(void);
|
|
void sp_min_fiq(void);
|
|
|
|
#endif /* SP_MIN_PRIVATE_H */
|