From: Rasmus Villemoes Date: Wed, 4 Jun 2025 19:56:03 +0000 (+0200) Subject: mips: drop volatile qualifier from gd pointer X-Git-Tag: v2025.10-rc1~118^2~18^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=344c7e091c2033be4a5cb8bf73c08d8cf020b77d;p=pandora-u-boot.git mips: drop volatile qualifier from gd pointer Signed-off-by: Rasmus Villemoes --- diff --git a/arch/mips/include/asm/global_data.h b/arch/mips/include/asm/global_data.h index 147a95ecea8..265dd2a3ec4 100644 --- a/arch/mips/include/asm/global_data.h +++ b/arch/mips/include/asm/global_data.h @@ -44,6 +44,6 @@ struct arch_global_data { #include -#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("k0") +#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("k0") #endif /* __ASM_GBL_DATA_H */