Module Name:    src
Committed By:   andvar
Date:           Sun Mar 26 15:24:22 UTC 2023

Modified Files:
        src/sys/arch/amiga/dev: view.c viewioctl.h viewvar.h
        src/sys/arch/atari/dev: view.c viewvar.h

Log Message:
s/dipslay/display/ in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/sys/arch/amiga/dev/view.c
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/amiga/dev/viewioctl.h
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/amiga/dev/viewvar.h
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/atari/dev/view.c
cvs rdiff -u -r1.8 -r1.9 src/sys/arch/atari/dev/viewvar.h

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/amiga/dev/view.c
diff -u src/sys/arch/amiga/dev/view.c:1.34 src/sys/arch/amiga/dev/view.c:1.35
--- src/sys/arch/amiga/dev/view.c:1.34	Sun Sep 19 10:34:07 2021
+++ src/sys/arch/amiga/dev/view.c	Sun Mar 26 15:24:22 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: view.c,v 1.34 2021/09/19 10:34:07 andvar Exp $ */
+/*	$NetBSD: view.c,v 1.35 2023/03/26 15:24:22 andvar Exp $ */
 
 /*
  * Copyright (c) 1994 Christian E. Hopps
@@ -31,14 +31,14 @@
  */
 
 /* The view major device is a placeholder device.  It serves
- * simply to map the semantics of a graphics dipslay to
+ * simply to map the semantics of a graphics display to
  * the semantics of a character block device.  In other
  * words the graphics system as currently built does not like to be
  * referred to by open/close/ioctl.  This device serves as
  * a interface to graphics. */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.34 2021/09/19 10:34:07 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.35 2023/03/26 15:24:22 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>

Index: src/sys/arch/amiga/dev/viewioctl.h
diff -u src/sys/arch/amiga/dev/viewioctl.h:1.11 src/sys/arch/amiga/dev/viewioctl.h:1.12
--- src/sys/arch/amiga/dev/viewioctl.h:1.11	Sun Sep 19 10:34:07 2021
+++ src/sys/arch/amiga/dev/viewioctl.h	Sun Mar 26 15:24:22 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: viewioctl.h,v 1.11 2021/09/19 10:34:07 andvar Exp $	*/
+/*	$NetBSD: viewioctl.h,v 1.12 2023/03/26 15:24:22 andvar Exp $	*/
 
 /*
  * Copyright (c) 1994 Christian E. Hopps
@@ -32,7 +32,7 @@
 
 /*
  * The view major device is a placeholder device.  It serves
- * simply to map the semantics of a graphics dipslay to
+ * simply to map the semantics of a graphics display to
  * the semantics of a character block device.  In other
  * words the graphics system as currently built does not like to be
  * referred to by open/close/ioctl.  This device serves as

Index: src/sys/arch/amiga/dev/viewvar.h
diff -u src/sys/arch/amiga/dev/viewvar.h:1.5 src/sys/arch/amiga/dev/viewvar.h:1.6
--- src/sys/arch/amiga/dev/viewvar.h:1.5	Sun Sep 19 10:34:07 2021
+++ src/sys/arch/amiga/dev/viewvar.h	Sun Mar 26 15:24:22 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: viewvar.h,v 1.5 2021/09/19 10:34:07 andvar Exp $	*/
+/*	$NetBSD: viewvar.h,v 1.6 2023/03/26 15:24:22 andvar Exp $	*/
 
 /*
  * Copyright (c) 1994 Christian E. Hopps
@@ -31,7 +31,7 @@
  */
 
 /* The view major device is a placeholder device.  It serves
- * simply to map the semantics of a graphics dipslay to
+ * simply to map the semantics of a graphics display to
  * the semantics of a character block device.  In other
  * words the graphics system as currently built does not like to be
  * referred to by open/close/ioctl.  This device serves as

Index: src/sys/arch/atari/dev/view.c
diff -u src/sys/arch/atari/dev/view.c:1.38 src/sys/arch/atari/dev/view.c:1.39
--- src/sys/arch/atari/dev/view.c:1.38	Fri Jan  6 10:28:28 2023
+++ src/sys/arch/atari/dev/view.c	Sun Mar 26 15:24:21 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: view.c,v 1.38 2023/01/06 10:28:28 tsutsui Exp $	*/
+/*	$NetBSD: view.c,v 1.39 2023/03/26 15:24:21 andvar Exp $	*/
 
 /*
  * Copyright (c) 1994 Christian E. Hopps
@@ -31,14 +31,14 @@
  */
 
 /* The view major device is a placeholder device.  It serves
- * simply to map the semantics of a graphics dipslay to
+ * simply to map the semantics of a graphics display to
  * the semantics of a character block device.  In other
  * words the graphics system as currently built does not like to be
  * referred to by open/close/ioctl.  This device serves as
  * a interface to graphics. */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.38 2023/01/06 10:28:28 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: view.c,v 1.39 2023/03/26 15:24:21 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>

Index: src/sys/arch/atari/dev/viewvar.h
diff -u src/sys/arch/atari/dev/viewvar.h:1.8 src/sys/arch/atari/dev/viewvar.h:1.9
--- src/sys/arch/atari/dev/viewvar.h:1.8	Sun Sep 19 10:34:08 2021
+++ src/sys/arch/atari/dev/viewvar.h	Sun Mar 26 15:24:21 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: viewvar.h,v 1.8 2021/09/19 10:34:08 andvar Exp $	*/
+/*	$NetBSD: viewvar.h,v 1.9 2023/03/26 15:24:21 andvar Exp $	*/
 
 /*
  * Copyright (c) 1994 Christian E. Hopps
@@ -31,7 +31,7 @@
  */
 
 /* The view major device is a placeholder device.  It serves
- * simply to map the semantics of a graphics dipslay to
+ * simply to map the semantics of a graphics display to
  * the semantics of a character block device.  In other
  * words the graphics system as currently built does not like to be
  * referred to by open/close/ioctl.  This device serves as

Reply via email to