git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
45fa001
)
powerpc: drop volatile qualifier from gd pointer
author
Rasmus Villemoes
<ravi@prevas.dk>
Wed, 4 Jun 2025 19:56:02 +0000
(21:56 +0200)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/arch/powerpc/include/asm/global_data.h
b/arch/powerpc/include/asm/global_data.h
index
cc2ce61
..
26cbc78
100644
(file)
--- a/
arch/powerpc/include/asm/global_data.h
+++ b/
arch/powerpc/include/asm/global_data.h
@@
-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>