mips: drop volatile qualifier from gd pointer

Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
This commit is contained in:
Rasmus Villemoes 2025-06-04 21:56:03 +02:00 committed by Tom Rini
parent aa53d9bb7d
commit 344c7e091c

View File

@ -44,6 +44,6 @@ struct arch_global_data {
#include <asm-generic/global_data.h> #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 */ #endif /* __ASM_GBL_DATA_H */