diff options
| author | Heinrich Schuchardt <[email protected]> | 2025-03-02 15:21:19 +0100 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2025-03-10 07:41:16 +0100 |
| commit | 7082c9e656a824ecf5dfc2d59d2ce17f730c5d4a (patch) | |
| tree | 5eaf26831abdc206e42a673028d6e7b924b0b494 /lib | |
| 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 <[email protected]>
Signed-off-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efi_loader/efi_boottime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index 02ad9f7141f..3c6c2525903 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -21,7 +21,7 @@ #include <usb.h> #include <watchdog.h> #include <asm/global_data.h> -#include <asm/setjmp.h> +#include <setjmp.h> #include <linux/libfdt_env.h> DECLARE_GLOBAL_DATA_PTR; |
