]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
powerpc: drop volatile qualifier from gd pointer
authorRasmus Villemoes <ravi@prevas.dk>
Wed, 4 Jun 2025 19:56:02 +0000 (21:56 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 13 Jun 2025 22:57:14 +0000 (16:57 -0600)
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
arch/powerpc/include/asm/global_data.h

index cc2ce617350ca8e48d3e1c6f62f5a7635b9e07d5..26cbc7854d9b3c8ddb26226e3b1eebd50c707644 100644 (file)
@@ -93,7 +93,7 @@ struct arch_global_data {
 
 #include <asm-generic/global_data.h>
 
-#define DECLARE_GLOBAL_DATA_PTR     register volatile gd_t *gd asm ("r2")
+#define DECLARE_GLOBAL_DATA_PTR     register gd_t *gd asm ("r2")
 
 #include <asm/u-boot.h>