From 87c851349847a608f12623b7fd397956982e41b6 Mon Sep 17 00:00:00 2001 From: Daniel Boulby Date: Thu, 20 Sep 2018 14:12:46 +0100 Subject: Mark BL31 initialization functions Mark the initialization functions in BL31, such as context management, EHF, RAS and PSCI as __init so that they can be reclaimed by the platform when no longer needed Change-Id: I7446aeee3dde8950b0f410cb766b7a2312c20130 Signed-off-by: Daniel Boulby --- bl31/bl31_main.c | 4 ++-- bl31/ehf.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'bl31') diff --git a/bl31/bl31_main.c b/bl31/bl31_main.c index 4b7f63c2..62bea010 100644 --- a/bl31/bl31_main.c +++ b/bl31/bl31_main.c @@ -57,7 +57,7 @@ uintptr_t get_arm_std_svc_args(unsigned int svc_mask) /******************************************************************************* * Simple function to initialise all BL31 helper libraries. ******************************************************************************/ -void bl31_lib_init(void) +void __init bl31_lib_init(void) { cm_init(); } @@ -149,7 +149,7 @@ uint32_t bl31_get_next_image_type(void) * This function programs EL3 registers and performs other setup to enable entry * into the next image after BL31 at the next ERET. ******************************************************************************/ -void bl31_prepare_next_image_entry(void) +void __init bl31_prepare_next_image_entry(void) { entry_point_info_t *next_image_info; uint32_t image_type; diff --git a/bl31/ehf.c b/bl31/ehf.c index 3d6d674b..fa036cb1 100644 --- a/bl31/ehf.c +++ b/bl31/ehf.c @@ -451,7 +451,7 @@ static uint64_t ehf_el3_interrupt_handler(uint32_t id, uint32_t flags, /* * Initialize the EL3 exception handling. */ -void ehf_init(void) +void __init ehf_init(void) { unsigned int flags = 0; int ret __unused; -- cgit v1.2.3