summaryrefslogtreecommitdiff
path: root/sys/dev
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
parent5c4a9c8761026146342c8e2d6968a9231bee90fe (diff)
Give initiali[sz]e all the "i"s it deserves.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/cardbus/adv_cardbus.c4
-rw-r--r--sys/dev/i2o/iop.c6
-rw-r--r--sys/dev/i2o/iopl.c4
-rw-r--r--sys/dev/ic/bt463.c4
-rw-r--r--sys/dev/ic/bt485.c4
-rw-r--r--sys/dev/ic/lancereg.h6
-rw-r--r--sys/dev/ic/mlx.c4
-rw-r--r--sys/dev/ic/mlxvar.h4
-rw-r--r--sys/dev/pci/bktr/bktr_core.c8
-rw-r--r--sys/dev/pci/bktr/bktr_os.c8
-rw-r--r--sys/dev/pci/bktr/bktr_reg.h8
-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
-rw-r--r--sys/dev/rcons/rcons_subr.c4
-rw-r--r--sys/dev/tc/px.c4
-rw-r--r--sys/dev/tc/stic.c4
21 files changed, 56 insertions, 56 deletions
diff --git a/sys/dev/cardbus/adv_cardbus.c b/sys/dev/cardbus/adv_cardbus.c
index 3b1e812a184..6b50855b163 100644
--- a/sys/dev/cardbus/adv_cardbus.c
+++ b/sys/dev/cardbus/adv_cardbus.c
@@ -1,4 +1,4 @@
-/* $NetBSD: adv_cardbus.c,v 1.1 2001/03/08 06:55:38 thorpej Exp $ */
+/* $NetBSD: adv_cardbus.c,v 1.2 2001/09/18 18:15:51 wiz Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -221,7 +221,7 @@ adv_cardbus_attach(parent, self, aux)
printf("%s: chip ver=%x\n", DEVNAME(sc), sc->chip_version);
#endif
/*
- * Initalize the board
+ * Initialize the board
*/
if (adv_init(sc)) {
printf("adv_init failed\n");
diff --git a/sys/dev/i2o/iop.c b/sys/dev/i2o/iop.c
index 02538114bdb..1080b675161 100644
--- a/sys/dev/i2o/iop.c
+++ b/sys/dev/i2o/iop.c
@@ -1,4 +1,4 @@
-/* $NetBSD: iop.c,v 1.16 2001/08/22 09:42:05 ad Exp $ */
+/* $NetBSD: iop.c,v 1.17 2001/09/18 18:15:51 wiz Exp $ */
/*-
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
@@ -375,7 +375,7 @@ iop_init(struct iop_softc *sc, const char *intrstr)
SLIST_INSERT_HEAD(&sc->sc_im_freelist, im, im_chain);
}
- /* Initalise the IOP's outbound FIFO. */
+ /* Initialise the IOP's outbound FIFO. */
if (iop_ofifo_init(sc) != 0) {
printf("%s: unable to init oubound FIFO\n",
sc->sc_dv.dv_xname);
@@ -944,7 +944,7 @@ iop_status_get(struct iop_softc *sc, int nosleep)
}
/*
- * Initalize and populate the IOP's outbound FIFO.
+ * Initialize and populate the IOP's outbound FIFO.
*/
static int
iop_ofifo_init(struct iop_softc *sc)
diff --git a/sys/dev/i2o/iopl.c b/sys/dev/i2o/iopl.c
index 8580f12de07..0cb40b5d164 100644
--- a/sys/dev/i2o/iopl.c
+++ b/sys/dev/i2o/iopl.c
@@ -1,4 +1,4 @@
-/* $NetBSD: iopl.c,v 1.3 2001/08/22 09:43:15 ad Exp $ */
+/* $NetBSD: iopl.c,v 1.4 2001/09/18 18:15:52 wiz Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -1349,7 +1349,7 @@ iopl_ifmedia_change(struct ifnet *ifp)
}
/*
- * Initalize the interface.
+ * Initialize the interface.
*/
static int
iopl_init(struct ifnet *ifp)
diff --git a/sys/dev/ic/bt463.c b/sys/dev/ic/bt463.c
index 39b60fe737b..879da23a253 100644
--- a/sys/dev/ic/bt463.c
+++ b/sys/dev/ic/bt463.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bt463.c,v 1.4 2001/08/05 11:09:51 jdolecek Exp $ */
+/* $NetBSD: bt463.c,v 1.5 2001/09/18 18:15:52 wiz Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -292,7 +292,7 @@ bt463_init(rc)
BTWREG(data, BT463_IREG_TEST, 0);
/*
- * Initalize the RAMDAC info struct to hold all of our
+ * Initialize the RAMDAC info struct to hold all of our
* data, and fill it in.
*/
data->changed = DATA_ALL_CHANGED;
diff --git a/sys/dev/ic/bt485.c b/sys/dev/ic/bt485.c
index b306b943165..9d9306bbbaf 100644
--- a/sys/dev/ic/bt485.c
+++ b/sys/dev/ic/bt485.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bt485.c,v 1.5 2001/08/05 11:09:51 jdolecek Exp $ */
+/* $NetBSD: bt485.c,v 1.6 2001/09/18 18:15:52 wiz Exp $ */
/*
* Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -227,7 +227,7 @@ bt485_init(rc)
data->ramdac_wr(data->cookie, BT485_REG_PIXMASK, 0xff);
/*
- * Initalize the RAMDAC info struct to hold all of our
+ * Initialize the RAMDAC info struct to hold all of our
* data, and fill it in.
*/
data->changed = DATA_ALL_CHANGED;
diff --git a/sys/dev/ic/lancereg.h b/sys/dev/ic/lancereg.h
index 1e457a29258..db31d0db420 100644
--- a/sys/dev/ic/lancereg.h
+++ b/sys/dev/ic/lancereg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: lancereg.h,v 1.7 2001/08/24 05:04:40 thorpej Exp $ */
+/* $NetBSD: lancereg.h,v 1.8 2001/09/18 18:15:52 wiz Exp $ */
/*-
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -275,7 +275,7 @@
#define LE_C0_MERR 0x0800 /* memory error */
#define LE_C0_RINT 0x0400 /* receiver interrupt */
#define LE_C0_TINT 0x0200 /* transmitter interrupt */
-#define LE_C0_IDON 0x0100 /* initalization done */
+#define LE_C0_IDON 0x0100 /* initialization done */
#define LE_C0_INTR 0x0080 /* interrupt condition */
#define LE_C0_INEA 0x0040 /* interrupt enable */
#define LE_C0_RXON 0x0020 /* receiver on */
@@ -283,7 +283,7 @@
#define LE_C0_TDMD 0x0008 /* transmit demand */
#define LE_C0_STOP 0x0004 /* disable all external activity */
#define LE_C0_STRT 0x0002 /* enable external activity */
-#define LE_C0_INIT 0x0001 /* begin initalization */
+#define LE_C0_INIT 0x0001 /* begin initialization */
#define LE_C0_BITS \
"\20\20ERR\17BABL\16CERR\15MISS\14MERR\13RINT\
diff --git a/sys/dev/ic/mlx.c b/sys/dev/ic/mlx.c
index 88a0992c09a..6d79f1d6a2c 100644
--- a/sys/dev/ic/mlx.c
+++ b/sys/dev/ic/mlx.c
@@ -1,4 +1,4 @@
-/* $NetBSD: mlx.c,v 1.13 2001/08/05 11:11:33 jdolecek Exp $ */
+/* $NetBSD: mlx.c,v 1.14 2001/09/18 18:15:52 wiz Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -316,7 +316,7 @@ mlx_init(struct mlx_softc *mlx, const char *intrstr)
memset(mlx->mlx_sgls, 0, size);
/*
- * Allocate and initalize the CCBs.
+ * Allocate and initialize the CCBs.
*/
mc = malloc(sizeof(*mc) * MLX_MAX_QUEUECNT, M_DEVBUF, M_NOWAIT);
mlx->mlx_ccbs = mc;
diff --git a/sys/dev/ic/mlxvar.h b/sys/dev/ic/mlxvar.h
index ca7f31a933d..d0140ec2c1a 100644
--- a/sys/dev/ic/mlxvar.h
+++ b/sys/dev/ic/mlxvar.h
@@ -1,4 +1,4 @@
-/* $NetBSD: mlxvar.h,v 1.4 2001/07/26 12:38:03 ad Exp $ */
+/* $NetBSD: mlxvar.h,v 1.5 2001/09/18 18:15:52 wiz Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -173,7 +173,7 @@ struct mlx_softc {
#define MLXF_FW_INITTED 0x0004 /* firmware init crap done */
#define MLXF_PAUSEWORKS 0x0008 /* channel pause works as expected */
#define MLXF_OPEN 0x0010 /* control device is open */
-#define MLXF_INITOK 0x0020 /* controller initalised OK */
+#define MLXF_INITOK 0x0020 /* controller initialised OK */
#define MLXF_PERIODIC_CTLR 0x0040 /* periodic check running */
#define MLXF_PERIODIC_DRIVE 0x0080 /* periodic check running */
#define MLXF_PERIODIC_REBUILD 0x0100 /* periodic check running */
diff --git a/sys/dev/pci/bktr/bktr_core.c b/sys/dev/pci/bktr/bktr_core.c
index 9d1069d203e..926aec2388f 100644
--- a/sys/dev/pci/bktr/bktr_core.c
+++ b/sys/dev/pci/bktr/bktr_core.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bktr_core.c,v 1.17 2001/03/03 00:08:05 mjl Exp $ */
+/* $NetBSD: bktr_core.c,v 1.18 2001/09/18 18:15:52 wiz Exp $ */
/* FreeBSD: src/sys/dev/bktr/bktr_core.c,v 1.114 2000/10/31 13:09:56 roger Exp */
@@ -558,7 +558,7 @@ bktr_store_address(unit, BKTR_MEM_BUF, buf);
}
- bktr->flags = METEOR_INITALIZED | METEOR_AUTOMODE |
+ bktr->flags = METEOR_INITIALIZED | METEOR_AUTOMODE |
METEOR_DEV0 | METEOR_RGB16;
bktr->dma_prog_loaded = FALSE;
bktr->cols = 640;
@@ -601,7 +601,7 @@ bktr_store_address(unit, BKTR_MEM_BUF, buf);
bktr->clr_on_start = FALSE;
/* defaults for the tuner section of the card */
- bktr->tflags = TUNER_INITALIZED;
+ bktr->tflags = TUNER_INITIALIZED;
bktr->tuner.frequency = 0;
bktr->tuner.channel = 0;
bktr->tuner.chnlset = DEFAULT_CHNLSET;
@@ -1077,7 +1077,7 @@ vbi_open( bktr_ptr_t bktr )
int
tuner_open( bktr_ptr_t bktr )
{
- if ( !(bktr->tflags & TUNER_INITALIZED) ) /* device not found */
+ if ( !(bktr->tflags & TUNER_INITIALIZED) ) /* device not found */
return( ENXIO );
if ( bktr->tflags & TUNER_OPEN ) /* already open */
diff --git a/sys/dev/pci/bktr/bktr_os.c b/sys/dev/pci/bktr/bktr_os.c
index 1884dfd421e..6e711e1676a 100644
--- a/sys/dev/pci/bktr/bktr_os.c
+++ b/sys/dev/pci/bktr/bktr_os.c
@@ -1,4 +1,4 @@
-/* $NetBSD: bktr_os.c,v 1.19 2001/03/15 21:59:09 ross Exp $ */
+/* $NetBSD: bktr_os.c,v 1.20 2001/09/18 18:15:52 wiz Exp $ */
/* FreeBSD: src/sys/dev/bktr/bktr_os.c,v 1.20 2000/10/20 08:16:53 roger Exp */
@@ -572,7 +572,7 @@ bktr_open( dev_t dev, int flags, int fmt, struct proc *p )
return (ENXIO);
}
- if (!(bktr->flags & METEOR_INITALIZED)) /* device not found */
+ if (!(bktr->flags & METEOR_INITIALIZED)) /* device not found */
return( ENXIO );
/* Record that the device is now busy */
@@ -1073,7 +1073,7 @@ bktr_open( dev_t dev, int flags, int fmt, struct proc *p )
bktr = &(brooktree[ unit ]);
- if (!(bktr->flags & METEOR_INITALIZED)) /* device not found */
+ if (!(bktr->flags & METEOR_INITIALIZED)) /* device not found */
return( ENXIO );
@@ -1625,7 +1625,7 @@ bktr_open(dev_t dev, int flags, int fmt, struct proc *p)
bktr = bktr_cd.cd_devs[unit];
- if (!(bktr->flags & METEOR_INITALIZED)) /* device not found */
+ if (!(bktr->flags & METEOR_INITIALIZED)) /* device not found */
return(ENXIO);
switch (FUNCTION(dev)) {
diff --git a/sys/dev/pci/bktr/bktr_reg.h b/sys/dev/pci/bktr/bktr_reg.h
index 567434f2608..1c2242099db 100644
--- a/sys/dev/pci/bktr/bktr_reg.h
+++ b/sys/dev/pci/bktr/bktr_reg.h
@@ -1,4 +1,4 @@
-/* $NetBSD: bktr_reg.h,v 1.9 2000/12/30 16:52:37 wiz Exp $ */
+/* $NetBSD: bktr_reg.h,v 1.10 2001/09/18 18:15:53 wiz Exp $ */
/*
* FreeBSD: src/sys/dev/bktr/bktr_reg.h,v 1.42 2000/10/31 13:09:56 roger Exp
@@ -618,7 +618,7 @@ struct bktr_softc {
u_short capcontrol; /* reg 0xdc capture control */
u_short bktr_cap_ctl;
volatile u_int flags;
-#define METEOR_INITALIZED 0x00000001
+#define METEOR_INITIALIZED 0x00000001
#define METEOR_OPEN 0x00000002
#define METEOR_MMAP 0x00000004
#define METEOR_INTR 0x00000008
@@ -658,10 +658,10 @@ struct bktr_softc {
#define METEOR_RGB 0x20000000 /* meteor rgb unit */
#define METEOR_FIELD_MODE 0x80000000
u_char tflags; /* Tuner flags (/dev/tuner) */
-#define TUNER_INITALIZED 0x00000001
+#define TUNER_INITIALIZED 0x00000001
#define TUNER_OPEN 0x00000002
u_char vbiflags; /* VBI flags (/dev/vbi) */
-#define VBI_INITALIZED 0x00000001
+#define VBI_INITIALIZED 0x00000001
#define VBI_OPEN 0x00000002
#define VBI_CAPTURE 0x00000004
u_short fps; /* frames per second */
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)
diff --git a/sys/dev/rcons/rcons_subr.c b/sys/dev/rcons/rcons_subr.c
index c2e1a593fb8..2afdb252173 100644
--- a/sys/dev/rcons/rcons_subr.c
+++ b/sys/dev/rcons/rcons_subr.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rcons_subr.c,v 1.7 2000/04/16 21:49:49 pk Exp $ */
+/* $NetBSD: rcons_subr.c,v 1.8 2001/09/18 18:15:53 wiz Exp $ */
/*
* Copyright (c) 1991, 1993
@@ -65,7 +65,7 @@ extern void rcons_bell(struct rconsole *);
#endif
#define RCONS_ISDIGIT(c) ((c) >= '0' && (c) <= '9')
-/* Initalize our operations set */
+/* Initialize our operations set */
void
rcons_init_ops(rc)
struct rconsole *rc;
diff --git a/sys/dev/tc/px.c b/sys/dev/tc/px.c
index 237fba14c71..5d640434042 100644
--- a/sys/dev/tc/px.c
+++ b/sys/dev/tc/px.c
@@ -1,4 +1,4 @@
-/* $NetBSD: px.c,v 1.7 2001/07/04 14:17:58 ad Exp $ */
+/* $NetBSD: px.c,v 1.8 2001/09/18 18:15:54 wiz Exp $ */
/*-
* Copyright (c) 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -169,7 +169,7 @@ px_init(struct stic_info *si, int bootstrap)
*/
if (bootstrap) {
/*
- * UVM won't be initalised at this point, so grab memory
+ * UVM won't be initialised at this point, so grab memory
* directly from vm_physmem[].
*/
kva = (caddr_t)uvm_pageboot_alloc(PX_BUF_SIZE + PX_BUF_ALIGN);
diff --git a/sys/dev/tc/stic.c b/sys/dev/tc/stic.c
index f90121e2c6a..a3c7dd1e680 100644
--- a/sys/dev/tc/stic.c
+++ b/sys/dev/tc/stic.c
@@ -1,4 +1,4 @@
-/* $NetBSD: stic.c,v 1.9 2001/08/05 18:07:55 jdolecek Exp $ */
+/* $NetBSD: stic.c,v 1.10 2001/09/18 18:15:54 wiz Exp $ */
/*-
* Copyright (c) 1999, 2000, 2001 The NetBSD Foundation, Inc.
@@ -301,7 +301,7 @@ stic_init(struct stic_info *si)
tc_syncbus();
DELAY(1000);
- /* Finish the initalization. */
+ /* Finish the initialization. */
SELECT(vdac, BT459_IREG_COMMAND_1);
REG(vdac, bt_reg) = 0x00000000; tc_wmb();
REG(vdac, bt_reg) = 0x00c2c2c2; tc_wmb();