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 /include/interrupt.h | |
| 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 'include/interrupt.h')
| -rw-r--r-- | include/interrupt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/interrupt.h b/include/interrupt.h index 46ef2e196d4..6ea28b54a56 100644 --- a/include/interrupt.h +++ b/include/interrupt.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */ -#include <asm/setjmp.h> +#include <setjmp.h> /** * struct resume_data - data for resume after interrupt |
