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:
fe0fa2b
)
m68k: drop volatile qualifier from gd pointer
author
Rasmus Villemoes
<ravi@prevas.dk>
Wed, 4 Jun 2025 19:56:05 +0000
(21:56 +0200)
committer
Tom Rini
<trini@konsulko.com>
Fri, 13 Jun 2025 22:57:15 +0000
(16:57 -0600)
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
arch/m68k/include/asm/global_data.h
patch
|
blob
|
history
diff --git
a/arch/m68k/include/asm/global_data.h
b/arch/m68k/include/asm/global_data.h
index
4ac8869
..
29b4664
100644
(file)
--- a/
arch/m68k/include/asm/global_data.h
+++ b/
arch/m68k/include/asm/global_data.h
@@
-36,7
+36,7
@@
struct arch_global_data {
extern gd_t *global_data;
#define DECLARE_GLOBAL_DATA_PTR gd_t *gd = global_data
#else
-#define DECLARE_GLOBAL_DATA_PTR register
volatile
gd_t *gd asm ("d7")
+#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("d7")
#endif
#endif /* __ASM_GBL_DATA_H */