diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2025-03-02 15:21:19 +0100 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2025-03-10 07:41:16 +0100 |
commit | 7082c9e656a824ecf5dfc2d59d2ce17f730c5d4a (patch) | |
tree | 5eaf26831abdc206e42a673028d6e7b924b0b494 /arch/arm/cpu/armv8/exception_level.c | |
parent | 8aa1d810e2d346a1874bf3e6ec8d9301fd1778fe (diff) |
common: clean up setjmp.h
Separate setjmp.h into an architecture independent part and an architecture
specific part. This simplifies moving from using struct jmp_buf_data
directly to using type jmp_buf in our code which is the C compliant way.
Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org>
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'arch/arm/cpu/armv8/exception_level.c')
-rw-r--r-- | arch/arm/cpu/armv8/exception_level.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv8/exception_level.c b/arch/arm/cpu/armv8/exception_level.c index 85c78f55789..58e816007f0 100644 --- a/arch/arm/cpu/armv8/exception_level.c +++ b/arch/arm/cpu/armv8/exception_level.c @@ -11,8 +11,8 @@ #include <bootm.h> #include <cpu_func.h> #include <log.h> +#include <setjmp.h> #include <asm/cache.h> -#include <asm/setjmp.h> /** * entry_non_secure() - entry point when switching to non-secure mode |