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:
aa53d9b
)
mips: drop volatile qualifier from gd pointer
author
Rasmus Villemoes
<ravi@prevas.dk>
Wed, 4 Jun 2025 19:56:03 +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/mips/include/asm/global_data.h
patch
|
blob
|
history
diff --git
a/arch/mips/include/asm/global_data.h
b/arch/mips/include/asm/global_data.h
index
147a95e
..
265dd2a
100644
(file)
--- a/
arch/mips/include/asm/global_data.h
+++ b/
arch/mips/include/asm/global_data.h
@@
-44,6
+44,6
@@
struct arch_global_data {
#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 */