Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/riscv/riscv Typo in a trap name



details:   https://anonhg.NetBSD.org/src/rev/810637b3c73b
branches:  trunk
changeset: 941938:810637b3c73b
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sun Nov 01 20:56:24 2020 +0000

description:
Typo in a trap name

diffstat:

 sys/arch/riscv/riscv/trap.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 3c151577d0f4 -r 810637b3c73b sys/arch/riscv/riscv/trap.c
--- a/sys/arch/riscv/riscv/trap.c       Sun Nov 01 20:56:13 2020 +0000
+++ b/sys/arch/riscv/riscv/trap.c       Sun Nov 01 20:56:24 2020 +0000
@@ -32,7 +32,7 @@
 #define __PMAP_PRIVATE
 #define __UFETCHSTORE_PRIVATE
 
-__RCSID("$NetBSD: trap.c,v 1.7 2020/06/30 16:20:02 maxv Exp $");
+__RCSID("$NetBSD: trap.c,v 1.8 2020/11/01 20:56:24 skrll Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -59,7 +59,7 @@
 
 static const char * const causenames[] = {
        [CAUSE_MISALIGNED_FETCH] = "misaligned fetch",
-       [CAUSE_MISALIGNED_LOAD] = "mialigned load",
+       [CAUSE_MISALIGNED_LOAD] = "misaligned load",
        [CAUSE_MISALIGNED_STORE] = "misaligned store",
        [CAUSE_FAULT_FETCH] = "fetch",
        [CAUSE_FAULT_LOAD] = "load",



Home | Main Index | Thread Index | Old Index