summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorandvar <andvar@NetBSD.org>2023-06-27 19:30:27 +0000
committerandvar <andvar@NetBSD.org>2023-06-27 19:30:27 +0000
commit1b25d88d1f3a4a10872e13fd76956955103ffdca (patch)
treeecb0f2d19ab1ea1c9dffaae33c8f798a5027beaa /sys
parent186254ba142bf30c0f002c14d06a5d82d6477794 (diff)
remove double/tripple o in comments, where it likely was not added on purpose.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/sparc64/dev/rtc.c6
-rw-r--r--sys/rump/librump/rumpvfs/rumpfs.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/sparc64/dev/rtc.c b/sys/arch/sparc64/dev/rtc.c
index 04f62dc5085..1a588993dae 100644
--- a/sys/arch/sparc64/dev/rtc.c
+++ b/sys/arch/sparc64/dev/rtc.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rtc.c,v 1.8 2011/07/01 18:48:37 dyoung Exp $ */
+/* $NetBSD: rtc.c,v 1.9 2023/06/27 19:30:27 andvar Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -56,7 +56,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rtc.c,v 1.8 2011/07/01 18:48:37 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rtc.c,v 1.9 2023/06/27 19:30:27 andvar Exp $");
/*
* Clock driver for 'rtc' - mc146818 driver.
@@ -185,7 +185,7 @@ rtc_ebus_attach(device_t parent, device_t self, void *aux)
* MD mc146818 RTC todr routines.
*/
-/* Loooks like Sun stores the century info somewhere in CMOS RAM */
+/* Looks like Sun stores the century info somewhere in CMOS RAM */
#define MC_CENT 0x32
u_int
diff --git a/sys/rump/librump/rumpvfs/rumpfs.c b/sys/rump/librump/rumpvfs/rumpfs.c
index f5041bd611c..dab374b9db6 100644
--- a/sys/rump/librump/rumpvfs/rumpfs.c
+++ b/sys/rump/librump/rumpvfs/rumpfs.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpfs.c,v 1.166 2021/10/20 03:08:18 thorpej Exp $ */
+/* $NetBSD: rumpfs.c,v 1.167 2023/06/27 19:30:27 andvar Exp $ */
/*
* Copyright (c) 2009, 2010, 2011 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rumpfs.c,v 1.166 2021/10/20 03:08:18 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rumpfs.c,v 1.167 2023/06/27 19:30:27 andvar Exp $");
#include <sys/param.h>
#include <sys/atomic.h>
@@ -1517,7 +1517,7 @@ rump_vop_write(void *v)
uvm_vnp_setsize(vp, newlen);
}
- /* ok, we have enough stooorage. write */
+ /* ok, we have enough storage. write */
while (uio->uio_resid > 0) {
chunk = MIN(uio->uio_resid, (off_t)rn->rn_dlen-uio->uio_offset);
if (chunk == 0)