From: Rasmus Villemoes Date: Wed, 4 Jun 2025 19:56:04 +0000 (+0200) Subject: microblaze: drop volatile qualifier from gd pointer X-Git-Tag: v2025.10-rc1~118^2~18^2~8 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe0fa2bb6635ce3826b38204e68b284ada3a79fe;p=pandora-u-boot.git microblaze: drop volatile qualifier from gd pointer Signed-off-by: Rasmus Villemoes --- 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 -#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)