Module Name: src
Committed By: skrll
Date: Sun Oct 12 05:40:56 UTC 2014
Modified Files:
src/sys/arch/arm/arm32: db_machdep.c
Log Message:
Typo. s/NC/NS/
To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/arch/arm/arm32/db_machdep.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/arm32/db_machdep.c
diff -u src/sys/arch/arm/arm32/db_machdep.c:1.21 src/sys/arch/arm/arm32/db_machdep.c:1.22
--- src/sys/arch/arm/arm32/db_machdep.c:1.21 Sun Mar 30 08:00:34 2014
+++ src/sys/arch/arm/arm32/db_machdep.c Sun Oct 12 05:40:56 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: db_machdep.c,v 1.21 2014/03/30 08:00:34 skrll Exp $ */
+/* $NetBSD: db_machdep.c,v 1.22 2014/10/12 05:40:56 skrll Exp $ */
/*
* Copyright (c) 1996 Mark Brinicombe
@@ -33,7 +33,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_machdep.c,v 1.21 2014/03/30 08:00:34 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_machdep.c,v 1.22 2014/10/12 05:40:56 skrll Exp $");
#include <sys/param.h>
#include <sys/cpu.h>
@@ -337,7 +337,7 @@ tlb_print_cortex_a7_entry(size_t way, si
const u_int sh = __SHIFTOUT(d2, ARM_A7_TLBDATA2_SH);
static const char is_types[3][3] = { "NC", "WB", "WT" };
static const char os_types[4][6] = { "NC", "WB+WA", "WT", "WB" };
- static const char sh_types[4][3] = { "NC", "na", "OS", "IS" };
+ static const char sh_types[4][3] = { "NS", "na", "OS", "IS" };
db_printf(" %2s %5s %2s\n", is_types[is], os_types[os], sh_types[sh]);
}