diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-11-15 07:02:38 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-11-15 07:02:38 +0000 |
commit | cc00adccbb9237c547078c7edd38c29bf7cd8d1e (patch) | |
tree | fe0e8fbcaae2ad2799c932a8d52b4c0c5c80987a /sys/arch | |
parent | 6fce3b37edc744b1f3a2d2bd374c7f4d91075bb1 (diff) |
More typos (especially indicies -> indices), checked with jmc@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hp300/dev/hd.c | 10 | ||||
-rw-r--r-- | sys/arch/hp300/dev/hdreg.h | 4 | ||||
-rw-r--r-- | sys/arch/mac68k/mac68k/machdep.c | 4 | ||||
-rw-r--r-- | sys/arch/mvme88k/mvme88k/m88110.c | 4 | ||||
-rw-r--r-- | sys/arch/solbourne/solbourne/locore.s | 4 | ||||
-rw-r--r-- | sys/arch/sparc/sparc/locore.s | 4 | ||||
-rw-r--r-- | sys/arch/vax/mscp/mscp_subr.c | 4 |
7 files changed, 17 insertions, 17 deletions
diff --git a/sys/arch/hp300/dev/hd.c b/sys/arch/hp300/dev/hd.c index 0b6415cdfa9..d1da7ee591e 100644 --- a/sys/arch/hp300/dev/hd.c +++ b/sys/arch/hp300/dev/hd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hd.c,v 1.32 2005/11/14 20:20:30 miod Exp $ */ +/* $OpenBSD: hd.c,v 1.33 2005/11/15 07:02:36 miod Exp $ */ /* $NetBSD: rd.c,v 1.33 1997/07/10 18:14:08 kleink Exp $ */ /* @@ -1018,8 +1018,8 @@ hderror(unit) } /* * Unit requests release for internal maintenance. - * We just delay awhile and try again later. Use expontially - * increasing backoff ala ethernet drivers since we don't really + * We just delay a while and try again later. Use exponentially + * increasing backoff a la ethernet drivers since we don't really * know how long the maintenance will take. With HDWAITC and * HDRETRY as defined, the range is 1 to 32 seconds. */ @@ -1061,13 +1061,13 @@ hderror(unit) * Now output a generic message suitable for badsect. * Note that we don't use harderr because it just prints * out b_blkno which is just the beginning block number - * of the transfer, not necessary where the error occurred. + * of the transfer, not necessarily where the error occurred. */ printf("%s%c: hard error sn%d\n", rs->sc_dev.dv_xname, 'a' + HDPART(bp->b_dev), pbn); /* * Now report the status as returned by the hardware with - * attempt at interpretation (unless debugging). + * no attempt at interpretation (unless debugging). */ printf("%s: %s error:", rs->sc_dev.dv_xname, (bp->b_flags & B_READ) ? "read" : "write"); diff --git a/sys/arch/hp300/dev/hdreg.h b/sys/arch/hp300/dev/hdreg.h index bef7b7509ae..bb86d423d2f 100644 --- a/sys/arch/hp300/dev/hdreg.h +++ b/sys/arch/hp300/dev/hdreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hdreg.h,v 1.3 2004/04/12 22:12:32 jmc Exp $ */ +/* $OpenBSD: hdreg.h,v 1.4 2005/11/15 07:02:36 miod Exp $ */ /* $NetBSD: rdreg.h,v 1.7 1996/02/09 18:00:37 scottr Exp $ */ /* @@ -146,7 +146,7 @@ struct hd_describe { #define HD2200AID 0x22F #define HD2203AID 0x230 /* yet another guess */ -/* SW ids -- indicies into hdidentinfo, order is arbitrary */ +/* SW ids -- indices into hdidentinfo, order is arbitrary */ #define HD7945A 0 #define HD9134D 1 #define HD9122S 2 diff --git a/sys/arch/mac68k/mac68k/machdep.c b/sys/arch/mac68k/mac68k/machdep.c index 88bf5555dc0..bd7c519a51f 100644 --- a/sys/arch/mac68k/mac68k/machdep.c +++ b/sys/arch/mac68k/mac68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.120 2005/11/06 17:59:57 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.121 2005/11/15 07:02:36 miod Exp $ */ /* $NetBSD: machdep.c,v 1.207 1998/07/08 04:39:34 thorpej Exp $ */ /* @@ -355,7 +355,7 @@ cpu_startup(void) vers = mac68k_machine.booter_version; if (vers < CURRENTBOOTERVER) { - /* fix older booters with indicies, not versions */ + /* fix older booters with indices, not versions */ if (vers < 100) vers += 99; diff --git a/sys/arch/mvme88k/mvme88k/m88110.c b/sys/arch/mvme88k/mvme88k/m88110.c index 63abdda01c7..1a23337c17f 100644 --- a/sys/arch/mvme88k/mvme88k/m88110.c +++ b/sys/arch/mvme88k/mvme88k/m88110.c @@ -1,4 +1,4 @@ -/* $OpenBSD: m88110.c,v 1.25 2005/10/13 19:48:36 miod Exp $ */ +/* $OpenBSD: m88110.c,v 1.26 2005/11/15 07:02:36 miod Exp $ */ /* * Copyright (c) 1998 Steve Murphree, Jr. * All rights reserved. @@ -563,7 +563,7 @@ m88110_cmmu_show_translation(unsigned address, { /* * A virtual address is split into three fields. Two are used as - * indicies into tables (segment and page), and one is an offset into + * indices into tables (segment and page), and one is an offset into * a page of memory. */ union { diff --git a/sys/arch/solbourne/solbourne/locore.s b/sys/arch/solbourne/solbourne/locore.s index 9996e7997dc..c9cce60f6e6 100644 --- a/sys/arch/solbourne/solbourne/locore.s +++ b/sys/arch/solbourne/solbourne/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.2 2005/07/02 09:15:41 miod Exp $ */ +/* $OpenBSD: locore.s,v 1.3 2005/11/15 07:02:36 miod Exp $ */ /* OpenBSD: locore.s,v 1.64 2005/04/17 18:47:50 miod Exp */ /* @@ -771,7 +771,7 @@ Lpanic_red: * wmask[CWP] tells whether a `rett' would return into the invalid window. */ .data - .skip 32 ! alignment byte & negative indicies + .skip 32 ! alignment byte & negative indices uwtab: .skip 32 ! u_char uwtab[-31..31]; wmask: .skip 32 ! u_char wmask[0..31]; diff --git a/sys/arch/sparc/sparc/locore.s b/sys/arch/sparc/sparc/locore.s index fdc2f559511..7cf67858b55 100644 --- a/sys/arch/sparc/sparc/locore.s +++ b/sys/arch/sparc/sparc/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.65 2005/08/18 18:40:51 kettenis Exp $ */ +/* $OpenBSD: locore.s,v 1.66 2005/11/15 07:02:36 miod Exp $ */ /* $NetBSD: locore.s,v 1.73 1997/09/13 20:36:48 pk Exp $ */ /* @@ -1383,7 +1383,7 @@ label: b,a 1f; \ * wmask[CWP] tells whether a `rett' would return into the invalid window. */ .data - .skip 32 ! alignment byte & negative indicies + .skip 32 ! alignment byte & negative indices uwtab: .skip 32 ! u_char uwtab[-31..31]; wmask: .skip 32 ! u_char wmask[0..31]; diff --git a/sys/arch/vax/mscp/mscp_subr.c b/sys/arch/vax/mscp/mscp_subr.c index 59ef5eb47ed..aea69759d36 100644 --- a/sys/arch/vax/mscp/mscp_subr.c +++ b/sys/arch/vax/mscp/mscp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mscp_subr.c,v 1.7 2003/06/02 23:27:57 millert Exp $ */ +/* $OpenBSD: mscp_subr.c,v 1.8 2005/11/15 07:02:37 miod Exp $ */ /* $NetBSD: mscp_subr.c,v 1.18 2001/11/13 07:38:28 lukem Exp $ */ /* * Copyright (c) 1996 Ludd, University of Lule}, Sweden. @@ -306,7 +306,7 @@ mscp_init(mi) /* * While we are thinking about it, reset the next command - * and response indicies. + * and response indices. */ mi->mi_cmd.mri_next = 0; mi->mi_rsp.mri_next = 0; |