[PATCH 1/5] sandbox: remove linux/types.h dependency in setjmp.h

Jerome Forissier jerome.forissier at linaro.org
Tue Mar 4 14:48:32 CET 2025



On 3/2/25 15:21, Heinrich Schuchardt wrote:
> ulong is defined in linux/types.h use unsigned long instead.
> 
> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt at canonical.com>
> ---
>  arch/sandbox/include/asm/setjmp.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 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];

Reviewed-by: Jerome Forissier <jerome.forissier at linaro.org>

Regards,
-- 
Jerome


More information about the U-Boot mailing list