From: Heinrich Schuchardt Date: Sun, 2 Mar 2025 14:21:17 +0000 (+0100) Subject: sandbox: remove linux/types.h dependency in setjmp.h X-Git-Tag: v2025.07-rc1~18^2~62^2~5 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9b3810c67e8709a8d797ad3e340eb0f8d124963;p=pandora-u-boot.git sandbox: remove linux/types.h dependency in setjmp.h ulong is defined in linux/types.h use unsigned long instead. Reviewed-by: Jerome Forissier Signed-off-by: Heinrich Schuchardt --- diff --git a/arch/sandbox/include/asm/setjmp.h b/arch/sandbox/include/asm/setjmp.h index 001c7ea322d..47dc8938cd6 100644 --- a/arch/sandbox/include/asm/setjmp.h +++ b/arch/sandbox/include/asm/setjmp.h @@ -19,7 +19,7 @@ struct jmp_buf_data { * We don't need to worry about 16-byte alignment, since this does not * run on Windows. */ - ulong data[128]; + unsigned long data[128]; }; typedef struct jmp_buf_data jmp_buf[1];