summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-11-24 19:46:58 +0000
committerchristos <christos@NetBSD.org>2006-11-24 19:46:58 +0000
commit1665d5e960b3e7de8012efaed3e66e671f24a2dc (patch)
tree807ff6ea1e8e469b3e20584fd5e79a4a376a7843 /sys/dev/ic
parentd8f5d5f0440cac425531b11e46b86429c83fad5f (diff)
fix spelling of accommodate; from Zapher.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/README.ncr5380sbc2
-rw-r--r--sys/dev/ic/atw.c6
-rw-r--r--sys/dev/ic/gem.c6
-rw-r--r--sys/dev/ic/hme.c6
-rw-r--r--sys/dev/ic/ncr5380sbc.c6
-rw-r--r--sys/dev/ic/sunscpal.c6
6 files changed, 16 insertions, 16 deletions
diff --git a/sys/dev/ic/README.ncr5380sbc b/sys/dev/ic/README.ncr5380sbc
index e8b45b9cfec..01ea4cc0f0d 100644
--- a/sys/dev/ic/README.ncr5380sbc
+++ b/sys/dev/ic/README.ncr5380sbc
@@ -145,7 +145,7 @@ PAS-16, however, the registers are mapped to two sets of ports- four
sequential ports at the base address and four sequential ports located
0x2000 higher. As I currently understand it, this is not supportable by
the current bus_space() implementation nor is it possible for the driver
-to allocate a second bus_space_tag and _handle itself to accomodate the
+to allocate a second bus_space_tag and _handle itself to accommodate the
second set of ports. Without either, it is very difficult to imagine how
a portable linkage to the MI driver could be made.
diff --git a/sys/dev/ic/atw.c b/sys/dev/ic/atw.c
index 0f18bde9fa8..670ed233b5a 100644
--- a/sys/dev/ic/atw.c
+++ b/sys/dev/ic/atw.c
@@ -1,4 +1,4 @@
-/* $NetBSD: atw.c,v 1.124 2006/11/16 01:32:51 christos Exp $ */
+/* $NetBSD: atw.c,v 1.125 2006/11/24 19:46:59 christos Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000, 2002, 2003, 2004 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: atw.c,v 1.124 2006/11/16 01:32:51 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: atw.c,v 1.125 2006/11/24 19:46:59 christos Exp $");
#include "bpfilter.h"
@@ -1154,7 +1154,7 @@ atw_tofs0_init(struct atw_softc *sc)
* I am assuming that the role of ATW_TOFS0_USCNT is
* to divide the bus clock to get a 1 MHz clock---the datasheet is not
* very clear on this point. It says in the datasheet that it is
- * possible for the ADM8211 to accomodate bus speeds between 22 MHz
+ * possible for the ADM8211 to accommodate bus speeds between 22 MHz
* and 33 MHz; maybe this is the way? I see a binary-only driver write
* these values. These values are also the power-on default.
*/
diff --git a/sys/dev/ic/gem.c b/sys/dev/ic/gem.c
index 26504d29200..1bfa670c4c1 100644
--- a/sys/dev/ic/gem.c
+++ b/sys/dev/ic/gem.c
@@ -1,4 +1,4 @@
-/* $NetBSD: gem.c,v 1.51 2006/11/24 13:05:29 martin Exp $ */
+/* $NetBSD: gem.c,v 1.52 2006/11/24 19:46:59 christos Exp $ */
/*
*
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gem.c,v 1.51 2006/11/24 13:05:29 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gem.c,v 1.52 2006/11/24 19:46:59 christos Exp $");
#include "opt_inet.h"
#include "bpfilter.h"
@@ -329,7 +329,7 @@ gem_attach(sc, enaddr)
*/
if (child->mii_phy > 1 || child->mii_inst > 1) {
aprint_error(
- "%s: cannot accomodate MII device %s"
+ "%s: cannot accommodate MII device %s"
" at phy %d, instance %d\n",
sc->sc_dev.dv_xname,
child->mii_dev.dv_xname,
diff --git a/sys/dev/ic/hme.c b/sys/dev/ic/hme.c
index 706ed1182b5..5522ad65a9e 100644
--- a/sys/dev/ic/hme.c
+++ b/sys/dev/ic/hme.c
@@ -1,4 +1,4 @@
-/* $NetBSD: hme.c,v 1.54 2006/09/07 02:40:32 dogcow Exp $ */
+/* $NetBSD: hme.c,v 1.55 2006/11/24 19:46:59 christos Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: hme.c,v 1.54 2006/09/07 02:40:32 dogcow Exp $");
+__KERNEL_RCSID(0, "$NetBSD: hme.c,v 1.55 2006/11/24 19:46:59 christos Exp $");
/* #define HMEDEBUG */
@@ -290,7 +290,7 @@ hme_config(sc)
* connector.
*/
if (child->mii_phy > 1 || child->mii_inst > 1) {
- printf("%s: cannot accomodate MII device %s"
+ printf("%s: cannot accommodate MII device %s"
" at phy %d, instance %d\n",
sc->sc_dev.dv_xname,
child->mii_dev.dv_xname,
diff --git a/sys/dev/ic/ncr5380sbc.c b/sys/dev/ic/ncr5380sbc.c
index b6a9f438235..1f17be8fd41 100644
--- a/sys/dev/ic/ncr5380sbc.c
+++ b/sys/dev/ic/ncr5380sbc.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ncr5380sbc.c,v 1.61 2006/11/16 01:32:51 christos Exp $ */
+/* $NetBSD: ncr5380sbc.c,v 1.62 2006/11/24 19:46:59 christos Exp $ */
/*
* Copyright (c) 1995 David Jones, Gordon W. Ross
@@ -71,7 +71,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ncr5380sbc.c,v 1.61 2006/11/16 01:32:51 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ncr5380sbc.c,v 1.62 2006/11/24 19:46:59 christos Exp $");
#include "opt_ddb.h"
@@ -1520,7 +1520,7 @@ success:
/*
* The message system:
*
- * This is a revamped message system that now should easier accomodate
+ * This is a revamped message system that now should easier accommodate
* new messages, if necessary.
*
* Currently we accept these messages:
diff --git a/sys/dev/ic/sunscpal.c b/sys/dev/ic/sunscpal.c
index 3bae46c483c..f597aaa9f34 100644
--- a/sys/dev/ic/sunscpal.c
+++ b/sys/dev/ic/sunscpal.c
@@ -1,4 +1,4 @@
-/* $NetBSD: sunscpal.c,v 1.20 2005/12/24 20:27:30 perry Exp $ */
+/* $NetBSD: sunscpal.c,v 1.21 2006/11/24 19:46:59 christos Exp $ */
/*
* Copyright (c) 2001 Matthew Fredette
@@ -76,7 +76,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunscpal.c,v 1.20 2005/12/24 20:27:30 perry Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunscpal.c,v 1.21 2006/11/24 19:46:59 christos Exp $");
#include "opt_ddb.h"
@@ -1274,7 +1274,7 @@ success:
/*
* The message system:
*
- * This is a revamped message system that now should easier accomodate
+ * This is a revamped message system that now should easier accommodate
* new messages, if necessary.
*
* Currently we accept these messages: