[PATCH] riscv: entry: fix typo in comment 'instruciton' -> 'instruction'

Florian Schmaus posted 1 patch 4 months ago
arch/riscv/kernel/entry.S | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] riscv: entry: fix typo in comment 'instruciton' -> 'instruction'
Posted by Florian Schmaus 4 months ago
Signed-off-by: Florian Schmaus <flo@geekplace.eu>
---
 arch/riscv/kernel/entry.S | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/riscv/kernel/entry.S b/arch/riscv/kernel/entry.S
index d3d92a4becc7..9b9dec6893b8 100644
--- a/arch/riscv/kernel/entry.S
+++ b/arch/riscv/kernel/entry.S
@@ -455,7 +455,7 @@ SYM_DATA_START_LOCAL(excp_vect_table)
 	RISCV_PTR do_trap_ecall_s
 	RISCV_PTR do_trap_unknown
 	RISCV_PTR do_trap_ecall_m
-	/* instruciton page fault */
+	/* instruction page fault */
 	ALT_PAGE_FAULT(RISCV_PTR do_page_fault)
 	RISCV_PTR do_page_fault   /* load page fault */
 	RISCV_PTR do_trap_unknown
-- 
2.49.1
Re: [PATCH] riscv: entry: fix typo in comment 'instruciton' -> 'instruction'
Posted by Paul Walmsley 4 months ago
On Mon, 6 Oct 2025, Florian Schmaus wrote:

> Signed-off-by: Florian Schmaus <flo@geekplace.eu>

Please don't forget to run checkpatch.pl on your patches before sending 
them; it would have caught the lack of a commit message.

I wrote a one-line patch description and queued it for 
early v6.18-rc; thanks.  


- Paul