Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/hpcsh/hpcsh Fix several typos in comments.
details: https://anonhg.NetBSD.org/src/rev/79373a7288bc
branches: trunk
changeset: 571230:79373a7288bc
user: uwe <uwe%NetBSD.org@localhost>
date: Sun Nov 14 15:45:02 2004 +0000
description:
Fix several typos in comments.
diffstat:
sys/arch/hpcsh/hpcsh/machdep.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (44 lines):
diff -r 2e3e322fe40a -r 79373a7288bc sys/arch/hpcsh/hpcsh/machdep.c
--- a/sys/arch/hpcsh/hpcsh/machdep.c Sun Nov 14 15:25:11 2004 +0000
+++ b/sys/arch/hpcsh/hpcsh/machdep.c Sun Nov 14 15:45:02 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.48 2004/07/06 16:21:05 uch Exp $ */
+/* $NetBSD: machdep.c,v 1.49 2004/11/14 15:45:02 uwe Exp $ */
/*-
* Copyright (c) 2001, 2002, 2004 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.48 2004/07/06 16:21:05 uch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.49 2004/11/14 15:45:02 uwe Exp $");
#include "opt_md.h"
#include "opt_ddb.h"
@@ -432,14 +432,14 @@
phys_ram_seg_t *seg;
int npages, i;
- /* cluster 0 is always kernel myself. */
+ /* cluster 0 is always the kernel itself. */
mem_clusters[0].start = SH_CS3_START;
mem_clusters[0].size = addr - SH_CS3_START;
mem_cluster_cnt = 1;
/* search CS3 */
#ifdef SH3
- /* SH7709A's CS3 is splited to 2 banks. */
+ /* SH7709A's CS3 is split to 2 banks. */
if (CPU_IS_SH3) {
__find_dram_shadow(addr, SH7709_CS3_BANK0_END);
__find_dram_shadow(SH7709_CS3_BANK1_START,
@@ -447,7 +447,7 @@
}
#endif
#ifdef SH4
- /* contig CS3 */
+ /* contiguous CS3 */
if (CPU_IS_SH4) {
__find_dram_shadow(addr, SH_CS3_END);
}
Home |
Main Index |
Thread Index |
Old Index