aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorChanho Park2023-09-08 17:08:56 +0900
committerTom Rini2023-10-09 15:24:31 -0400
commita60d9686f21fdf2549858ca0e728bcef545d73d2 (patch)
tree1ca761047502fb6f6fa06ee15bd3a8550a4b4a06 /common
parent47e7f128c40c9bf856e76bf125e44522c99f3511 (diff)
spl: add __noreturn attribute to spl_invoke_atf function
spl_invoke_atf function will not be returned to SPL. Thus, we need to set __noreturn function attribute to the function. Signed-off-by: Chanho Park <chanho61.park@samsung.com>
Diffstat (limited to 'common')
-rw-r--r--common/spl/spl_atf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/spl/spl_atf.c b/common/spl/spl_atf.c
index 2c10252834f..3bdd013a35f 100644
--- a/common/spl/spl_atf.c
+++ b/common/spl/spl_atf.c
@@ -187,10 +187,10 @@ static inline void raw_write_daif(unsigned int daif)
__asm__ __volatile__("msr DAIF, %x0\n\t" : : "r" (daif) : "memory");
}
-typedef void (*atf_entry_t)(struct bl31_params *params, void *plat_params);
+typedef void __noreturn (*atf_entry_t)(struct bl31_params *params, void *plat_params);
-static void bl31_entry(uintptr_t bl31_entry, uintptr_t bl32_entry,
- uintptr_t bl33_entry, uintptr_t fdt_addr)
+static void __noreturn bl31_entry(uintptr_t bl31_entry, uintptr_t bl32_entry,
+ uintptr_t bl33_entry, uintptr_t fdt_addr)
{
atf_entry_t atf_entry = (atf_entry_t)bl31_entry;
void *bl31_params;
@@ -251,7 +251,7 @@ uintptr_t spl_fit_images_get_entry(void *blob, int node)
return val;
}
-void spl_invoke_atf(struct spl_image_info *spl_image)
+void __noreturn spl_invoke_atf(struct spl_image_info *spl_image)
{
uintptr_t bl32_entry = 0;
uintptr_t bl33_entry = CONFIG_TEXT_BASE;