diff options
author | Rasmus Villemoes <ravi@prevas.dk> | 2025-06-04 21:56:03 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-13 16:57:14 -0600 |
commit | 344c7e091c2033be4a5cb8bf73c08d8cf020b77d (patch) | |
tree | 6128617a4bf9412e5976dacfcbb19eabfeee65bd | |
parent | aa53d9bb7d7b470eaa62e53550d66546f80d2446 (diff) |
mips: drop volatile qualifier from gd pointer
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
-rw-r--r-- | arch/mips/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <asm-generic/global_data.h> -#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 */ |