diff options
author | Rasmus Villemoes <ravi@prevas.dk> | 2025-06-04 21:56:11 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-13 16:57:15 -0600 |
commit | ce55643546a59c05d6c4b181c2b490b6db7ba1f5 (patch) | |
tree | 46b33d666a4ece4a76e73644150074ef679fcd98 | |
parent | abe705be4751dfd5ae2ed0c24971cd4417f645ad (diff) |
arm: remove volatile from set_gd prototype
The global gd pointer is no longer volatile-qualified. Callers of this
helper function have been updated to no longer use volatile-qualifed
temporary variables, so update the prototype accordingly.
Signed-off-by: Rasmus Villemoes <ravi@prevas.dk>
-rw-r--r-- | arch/arm/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h index f7a47204b7c..b2ec450f900 100644 --- a/arch/arm/include/asm/global_data.h +++ b/arch/arm/include/asm/global_data.h @@ -139,7 +139,7 @@ static inline gd_t *get_gd(void) #endif #endif -static inline void set_gd(volatile gd_t *gd_ptr) +static inline void set_gd(gd_t *gd_ptr) { #ifdef CONFIG_ARM64 __asm__ volatile("ldr x18, %0\n" : : "m"(gd_ptr)); |