summaryrefslogtreecommitdiff
path: root/sys/dev/rasops
diff options
context:
space:
mode:
authorwiz <wiz@NetBSD.org>2001-09-18 18:15:49 +0000
committerwiz <wiz@NetBSD.org>2001-09-18 18:15:49 +0000
commit9fa0b176295db80e0c2cc367c1baee727aeb26bc (patch)
tree428e4e95602fbb98cd17d228c1bb7146a6b5d77e /sys/dev/rasops
parent5c4a9c8761026146342c8e2d6968a9231bee90fe (diff)
Give initiali[sz]e all the "i"s it deserves.
Diffstat (limited to 'sys/dev/rasops')
-rw-r--r--sys/dev/rasops/rasops.c6
-rw-r--r--sys/dev/rasops/rasops.h4
-rw-r--r--sys/dev/rasops/rasops1.c6
-rw-r--r--sys/dev/rasops/rasops15.c6
-rw-r--r--sys/dev/rasops/rasops24.c6
-rw-r--r--sys/dev/rasops/rasops32.c6
-rw-r--r--sys/dev/rasops/rasops8.c6
7 files changed, 20 insertions, 20 deletions
diff --git a/sys/dev/rasops/rasops.c b/sys/dev/rasops/rasops.c
index 4352a18f2a9..21d4f3bcc89 100644
--- a/sys/dev/rasops/rasops.c
+++ b/sys/dev/rasops/rasops.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rasops.c,v 1.36 2001/02/12 04:33:36 nathanw Exp $ */
+/* $NetBSD: rasops.c,v 1.37 2001/09/18 18:15:53 wiz Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.36 2001/02/12 04:33:36 nathanw Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.37 2001/09/18 18:15:53 wiz Exp $");
#include "opt_rasops.h"
#include "rasops_glue.h"
@@ -114,7 +114,7 @@ static void rasops_do_cursor __P((struct rasops_info *));
static void rasops_init_devcmap __P((struct rasops_info *));
/*
- * Initalize a 'rasops_info' descriptor.
+ * Initialize a 'rasops_info' descriptor.
*/
int
rasops_init(ri, wantrows, wantcols)
diff --git a/sys/dev/rasops/rasops.h b/sys/dev/rasops/rasops.h
index f4845a5e238..e2d4555d416 100644
--- a/sys/dev/rasops/rasops.h
+++ b/sys/dev/rasops/rasops.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rasops.h,v 1.14 2001/01/21 13:50:59 takemura Exp $ */
+/* $NetBSD: rasops.h,v 1.15 2001/09/18 18:15:53 wiz Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -123,7 +123,7 @@ struct rasops_info {
*/
/*
- * Per-depth initalization functions. These should not be called outside
+ * Per-depth initialization functions. These should not be called outside
* the rasops code.
*/
void rasops1_init __P((struct rasops_info *));
diff --git a/sys/dev/rasops/rasops1.c b/sys/dev/rasops/rasops1.c
index 4c75ccafc5b..adfdcb87401 100644
--- a/sys/dev/rasops/rasops1.c
+++ b/sys/dev/rasops/rasops1.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rasops1.c,v 1.12 2000/06/13 13:36:55 ad Exp $ */
+/* $NetBSD: rasops1.c,v 1.13 2001/09/18 18:15:53 wiz Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
#include "opt_rasops.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops1.c,v 1.12 2000/06/13 13:36:55 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops1.c,v 1.13 2001/09/18 18:15:53 wiz Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -61,7 +61,7 @@ static void rasops1_putchar16 __P((void *, int, int col, u_int, long));
#endif
/*
- * Initalize rasops_info struct for this colordepth.
+ * Initialize rasops_info struct for this colordepth.
*/
void
rasops1_init(ri)
diff --git a/sys/dev/rasops/rasops15.c b/sys/dev/rasops/rasops15.c
index db6e5cc4017..0dc609382b8 100644
--- a/sys/dev/rasops/rasops15.c
+++ b/sys/dev/rasops/rasops15.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rasops15.c,v 1.8 2000/06/13 13:36:56 ad Exp $ */
+/* $NetBSD: rasops15.c,v 1.9 2001/09/18 18:15:53 wiz Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
#include "opt_rasops.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops15.c,v 1.8 2000/06/13 13:36:56 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops15.c,v 1.9 2001/09/18 18:15:53 wiz Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -77,7 +77,7 @@ static int stamp_mutex; /* XXX see note in readme */
#define STAMP_READ(o) (*(int32_t *)((caddr_t)stamp + (o)))
/*
- * Initalize rasops_info struct for this colordepth.
+ * Initialize rasops_info struct for this colordepth.
*/
void
rasops15_init(ri)
diff --git a/sys/dev/rasops/rasops24.c b/sys/dev/rasops/rasops24.c
index a64f124ae21..baa6e38e82d 100644
--- a/sys/dev/rasops/rasops24.c
+++ b/sys/dev/rasops/rasops24.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rasops24.c,v 1.13 2000/06/13 13:36:57 ad Exp $ */
+/* $NetBSD: rasops24.c,v 1.14 2001/09/18 18:15:53 wiz Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
#include "opt_rasops.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops24.c,v 1.13 2000/06/13 13:36:57 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops24.c,v 1.14 2001/09/18 18:15:53 wiz Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -83,7 +83,7 @@ static int stamp_mutex; /* XXX see note in readme */
#define STAMP_READ(o) (*(int32_t *)((caddr_t)stamp + (o)))
/*
- * Initalize rasops_info struct for this colordepth.
+ * Initialize rasops_info struct for this colordepth.
*/
void
rasops24_init(ri)
diff --git a/sys/dev/rasops/rasops32.c b/sys/dev/rasops/rasops32.c
index 62db3e60669..02f9e262443 100644
--- a/sys/dev/rasops/rasops32.c
+++ b/sys/dev/rasops/rasops32.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rasops32.c,v 1.8 2000/06/13 13:36:59 ad Exp $ */
+/* $NetBSD: rasops32.c,v 1.9 2001/09/18 18:15:53 wiz Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
#include "opt_rasops.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops32.c,v 1.8 2000/06/13 13:36:59 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops32.c,v 1.9 2001/09/18 18:15:53 wiz Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -52,7 +52,7 @@ __KERNEL_RCSID(0, "$NetBSD: rasops32.c,v 1.8 2000/06/13 13:36:59 ad Exp $");
static void rasops32_putchar __P((void *, int, int, u_int, long attr));
/*
- * Initalize a 'rasops_info' descriptor for this depth.
+ * Initialize a 'rasops_info' descriptor for this depth.
*/
void
rasops32_init(ri)
diff --git a/sys/dev/rasops/rasops8.c b/sys/dev/rasops/rasops8.c
index b8cd00a8c44..64e33373379 100644
--- a/sys/dev/rasops/rasops8.c
+++ b/sys/dev/rasops/rasops8.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rasops8.c,v 1.10 2001/08/10 19:12:36 bjh21 Exp $ */
+/* $NetBSD: rasops8.c,v 1.11 2001/09/18 18:15:53 wiz Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
#include "opt_rasops.h"
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops8.c,v 1.10 2001/08/10 19:12:36 bjh21 Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops8.c,v 1.11 2001/09/18 18:15:53 wiz Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -76,7 +76,7 @@ static int stamp_mutex; /* XXX see note in README */
#define STAMP_READ(o) (*(int32_t *)((caddr_t)stamp + (o)))
/*
- * Initalize a 'rasops_info' descriptor for this depth.
+ * Initialize a 'rasops_info' descriptor for this depth.
*/
void
rasops8_init(ri)