diff options
author | Rasmus Villemoes <ravi@prevas.dk> | 2025-06-04 21:56:07 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-13 16:57:15 -0600 |
commit | 30b97f58f20e58ea5bb1d5dce7253c58d03629d5 (patch) | |
tree | 8e01207b3bd4f24a5399c737a180c64cca11bf50 | |
parent | a6f3d70a6bc2f99ac86f47bc5697d7e6e36ea7b8 (diff) |
arc: drop volatile qualifier from gd pointer
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
-rw-r--r-- | arch/arc/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/include/asm/global_data.h b/arch/arc/include/asm/global_data.h index fd9b7fb5f8d..4c3a25996fc 100644 --- a/arch/arc/include/asm/global_data.h +++ b/arch/arc/include/asm/global_data.h @@ -20,6 +20,6 @@ struct arch_global_data { #include <asm-generic/global_data.h> -#define DECLARE_GLOBAL_DATA_PTR register volatile gd_t *gd asm ("r25") +#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("r25") #endif /* __ASM_ARC_GLOBAL_DATA_H */ |