Module Name:    src
Committed By:   andvar
Date:           Sun Jan  5 21:37:21 UTC 2025

Modified Files:
        src/sys/arch/acorn32/conf: files.acorn32
        src/sys/arch/arm/iomd: vidcvideo.c

Log Message:
Fix some typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/arch/acorn32/conf/files.acorn32
cvs rdiff -u -r1.50 -r1.51 src/sys/arch/arm/iomd/vidcvideo.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/acorn32/conf/files.acorn32
diff -u src/sys/arch/acorn32/conf/files.acorn32:1.29 src/sys/arch/acorn32/conf/files.acorn32:1.30
--- src/sys/arch/acorn32/conf/files.acorn32:1.29	Sat Jan 17 22:56:34 2009
+++ src/sys/arch/acorn32/conf/files.acorn32	Sun Jan  5 21:37:20 2025
@@ -1,4 +1,4 @@
-#	$NetBSD: files.acorn32,v 1.29 2009/01/17 22:56:34 bjh21 Exp $
+#	$NetBSD: files.acorn32,v 1.30 2025/01/05 21:37:20 andvar Exp $
 #
 # First try for arm-specific configuration info
 #
@@ -76,7 +76,7 @@ file	arch/acorn32/podulebus/if_ie.c		ie
 include "dev/scsipi/files.scsipi"
 
 #
-# Miscelanious podulebus devices not moved yet to dev/podules
+# Miscellaneous podulebus devices not moved yet to dev/podules
 #
 
 # Generic sbic (WD3393) driver

Index: src/sys/arch/arm/iomd/vidcvideo.c
diff -u src/sys/arch/arm/iomd/vidcvideo.c:1.50 src/sys/arch/arm/iomd/vidcvideo.c:1.51
--- src/sys/arch/arm/iomd/vidcvideo.c:1.50	Tue Sep 27 06:36:42 2022
+++ src/sys/arch/arm/iomd/vidcvideo.c	Sun Jan  5 21:37:21 2025
@@ -1,4 +1,4 @@
-/* $NetBSD: vidcvideo.c,v 1.50 2022/09/27 06:36:42 skrll Exp $ */
+/* $NetBSD: vidcvideo.c,v 1.51 2025/01/05 21:37:21 andvar Exp $ */
 
 /*
  * Copyright (c) 2001 Reinoud Zandijk
@@ -30,7 +30,7 @@
 
 #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
 
-__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.50 2022/09/27 06:36:42 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vidcvideo.c,v 1.51 2025/01/05 21:37:21 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -109,7 +109,7 @@ struct fb_devconfig {
 
 	struct vidc_mode	mode_info;
 
-	struct wsdisplay_emulops orig_ri_ops;	/* Rasops functions for deligation */
+	struct wsdisplay_emulops orig_ri_ops;	/* Rasops functions for delegation */
 
 	/* virtual console support */
 	struct vcons_data dc_vd;
@@ -252,7 +252,7 @@ vidcvideo_getdevconfig(vaddr_t dense_add
 	/* blank the memory */
 	memset((void*)dc->dc_vaddr, 0, dc->dc_size);
 
-	/* intitialise miscelanious */
+	/* initialize miscellaneous */
 	dc->dc_writeback_delay = 0;
 }
 
@@ -625,7 +625,7 @@ vidcvideo_colourmap_and_cursor_init(stru
 	ri->ri_gpos = rgbdat[4];
 	ri->ri_bpos = rgbdat[5];
 
-	/* initialise color map */
+	/* initialize color map */
 	cm = &dc->dc_cmap;
 	p = rasops_cmap;
 	for (index = 0; index < CMAP_SIZE; index++, p += 3) {
@@ -788,7 +788,7 @@ static void vv_copyrows(void *id, int sr
 	struct vcons_screen *scr = ri->ri_hw;
 	struct fb_devconfig *dc = (struct fb_devconfig *) (scr->scr_cookie);
 
-	/* All movements are done in multiples of character heigths */
+	/* All movements are done in multiples of character heights */
 	height = ri->ri_font->fontheight * nrows;
 	size   = height * ri->ri_stride;
 
@@ -812,8 +812,8 @@ static void vv_copyrows(void *id, int sr
 
 	/*
 	 * Else we just copy the area : we're braindead for now 
-	 * Note: we can't use hardware scrolling when the softc isnt
-	 * known yet...  if its not known we dont have interrupts and
+	 * Note: we can't use hardware scrolling when the softc isn't
+	 * known yet...  if it's not known we don't have interrupts and
 	 * we can't change the display address reliable other than in
 	 * a Vsync
 	 */

Reply via email to