Module Name: src
Committed By: skrll
Date: Sun Mar 17 08:25:10 UTC 2019
Modified Files:
src/sys/arch/arm/arm: undefined.c
Log Message:
Fixup a comment
To generate a diff of this commit:
cvs rdiff -u -r1.63 -r1.64 src/sys/arch/arm/arm/undefined.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/arm/undefined.c
diff -u src/sys/arch/arm/arm/undefined.c:1.63 src/sys/arch/arm/arm/undefined.c:1.64
--- src/sys/arch/arm/arm/undefined.c:1.63 Sat Mar 16 10:13:34 2019
+++ src/sys/arch/arm/arm/undefined.c Sun Mar 17 08:25:10 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: undefined.c,v 1.63 2019/03/16 10:13:34 skrll Exp $ */
+/* $NetBSD: undefined.c,v 1.64 2019/03/17 08:25:10 skrll Exp $ */
/*
* Copyright (c) 2001 Ben Harris.
@@ -55,7 +55,7 @@
#include <sys/kgdb.h>
#endif
-__KERNEL_RCSID(0, "$NetBSD: undefined.c,v 1.63 2019/03/16 10:13:34 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: undefined.c,v 1.64 2019/03/17 08:25:10 skrll Exp $");
#include <sys/kmem.h>
#include <sys/queue.h>
@@ -344,11 +344,11 @@ undefinedinstruction(trapframe_t *tf)
}
/*
* Should use fuword() here .. but in the interests of
- * squeezing every bit of speed we will just use
- * ReadWord(). We know the instruction can be read
+ * squeezing every bit of speed we will just use
+ * read_insn(). We know the instruction can be read
* as was just executed so this will never fail unless
* the kernel is screwed up in which case it does
- * not really matter does it ?
+ * not really matter does it?
*/
fault_instruction = read_insn(fault_pc, user);
}