diff options
author | Rasmus Villemoes <ravi@prevas.dk> | 2025-06-04 21:56:04 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-13 16:57:14 -0600 |
commit | fe0fa2bb6635ce3826b38204e68b284ada3a79fe (patch) | |
tree | 03660703fa61e8ff99b4b5de9a8372a68e0f5c70 | |
parent | 344c7e091c2033be4a5cb8bf73c08d8cf020b77d (diff) |
microblaze: drop volatile qualifier from gd pointer
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
-rw-r--r-- | arch/microblaze/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/include/asm/global_data.h b/arch/microblaze/include/asm/global_data.h index bb4112f22a3..f7922fac41c 100644 --- a/arch/microblaze/include/asm/global_data.h +++ b/arch/microblaze/include/asm/global_data.h @@ -18,7 +18,7 @@ struct arch_global_data { #include <asm-generic/global_data.h> -#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r31") +#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("r31") #define gd_cpuinfo() ((struct microblaze_cpuinfo *)&gd->arch.cpuinfo) |