All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] riscv: fix typo in init.c
@ 2021-05-30 13:22 Vitaly Wool
  2021-05-31  0:11 ` Jisheng Zhang
  0 siblings, 1 reply; 3+ messages in thread
From: Vitaly Wool @ 2021-05-30 13:22 UTC (permalink / raw)
  To: linux-riscv; +Cc: Palmer Dabbelt, Jisheng Zhang, Vitaly Wool

Commit 010623568222 introduced a typo in "__initdata" spelling
which led to build breakage for XIP. Fix that.

Fixes: 010623568222bd144eb73aa9f3b46c79b63d7676
Signed-off-by: Vitaly Wool <vitaly.wool@konsulko.com>
---
 arch/riscv/mm/init.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/riscv/mm/init.c b/arch/riscv/mm/init.c
index ae32f78207f0..e7b136abf90c 100644
--- a/arch/riscv/mm/init.c
+++ b/arch/riscv/mm/init.c
@@ -451,7 +451,7 @@ static uintptr_t load_sz __initdata;
 #endif
 
 #ifdef CONFIG_XIP_KERNEL
-static uintptr_t xiprom __inidata;
+static uintptr_t xiprom __initdata;
 static uintptr_t xiprom_sz __initdata;
 #define xiprom_sz      (*((uintptr_t *)XIP_FIXUP(&xiprom_sz)))
 #define xiprom         (*((uintptr_t *)XIP_FIXUP(&xiprom)))
-- 
2.29.2


_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-08  7:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-30 13:22 [PATCH] riscv: fix typo in init.c Vitaly Wool
2021-05-31  0:11 ` Jisheng Zhang
2021-06-08  7:56   ` Jisheng Zhang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.