diff options
author | Rasmus Villemoes <ravi@prevas.dk> | 2025-06-04 21:56:02 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-13 16:57:14 -0600 |
commit | aa53d9bb7d7b470eaa62e53550d66546f80d2446 (patch) | |
tree | 68556e9a721746125fdec1548fe878484a1887fe | |
parent | 45fa0014ba56fc52765d66edda489933ce0e9871 (diff) |
powerpc: drop volatile qualifier from gd pointer
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
-rw-r--r-- | arch/powerpc/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/global_data.h b/arch/powerpc/include/asm/global_data.h index cc2ce617350..26cbc7854d9 100644 --- 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> |