diff options
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ata/wd.c | 4 | ||||
-rw-r--r-- | sys/dev/ata/wdvar.h | 4 | ||||
-rw-r--r-- | sys/dev/ic/dptreg.h | 4 | ||||
-rw-r--r-- | sys/dev/ic/ncr5380.c | 4 | ||||
-rw-r--r-- | sys/dev/isa/if_ecreg.h | 4 | ||||
-rw-r--r-- | sys/dev/isa/if_edreg.h | 4 | ||||
-rw-r--r-- | sys/dev/pci/if_tl.c | 4 | ||||
-rw-r--r-- | sys/dev/pci/ncr.c | 6 | ||||
-rw-r--r-- | sys/dev/tc/asc.c | 4 | ||||
-rw-r--r-- | sys/dev/tc/ascvar.h | 4 | ||||
-rw-r--r-- | sys/dev/usb/if_cue.c | 4 |
11 files changed, 23 insertions, 23 deletions
diff --git a/sys/dev/ata/wd.c b/sys/dev/ata/wd.c index f9da3dd32cc..1a2a24f3b78 100644 --- a/sys/dev/ata/wd.c +++ b/sys/dev/ata/wd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wd.c,v 1.13 2000/06/30 06:56:24 art Exp $ */ +/* $OpenBSD: wd.c,v 1.14 2001/01/25 03:50:50 todd Exp $ */ /* $NetBSD: wd.c,v 1.193 1999/02/28 17:15:27 explorer Exp $ */ /* @@ -137,7 +137,7 @@ struct wd_softc { struct buf sc_q; /* IDE disk soft states */ struct ata_bio sc_wdc_bio; /* current transfer */ - struct buf *sc_bp; /* buf being transfered */ + struct buf *sc_bp; /* buf being transferred */ struct ata_drive_datas *drvp; /* Our controller's infos */ int openings; struct ataparams sc_params;/* drive characteistics found */ diff --git a/sys/dev/ata/wdvar.h b/sys/dev/ata/wdvar.h index 5dc67ffedbe..a3daa7e2c59 100644 --- a/sys/dev/ata/wdvar.h +++ b/sys/dev/ata/wdvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wdvar.h,v 1.2 2000/04/10 07:06:16 csapuntz Exp $ */ +/* $OpenBSD: wdvar.h,v 1.3 2001/01/25 03:50:50 todd Exp $ */ /* $NetBSD: wdvar.h,v 1.3 1998/11/11 19:38:27 bouyer Exp $ */ /* @@ -47,7 +47,7 @@ struct ata_bio { int multi; /* number of blocks to transfer in multi-mode */ struct disklabel *lp; /* pointer to drive's label info */ daddr_t blkno; /* block addr */ - daddr_t blkdone; /* number of blks transfered */ + daddr_t blkdone; /* number of blks transferred */ daddr_t nblks; /* number of block currently transfering */ int nbytes; /* number of bytes currently transfering */ long bcount; /* total number of bytes */ diff --git a/sys/dev/ic/dptreg.h b/sys/dev/ic/dptreg.h index 080f5b25f5b..3b590f699de 100644 --- a/sys/dev/ic/dptreg.h +++ b/sys/dev/ic/dptreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dptreg.h,v 1.1 1999/11/30 07:55:56 cmetz Exp $ */ +/* $OpenBSD: dptreg.h,v 1.2 2001/01/25 03:50:50 todd Exp $ */ /* $NetBSD: dptreg.h,v 1.4 1999/10/19 20:16:48 ad Exp $ */ /* @@ -186,7 +186,7 @@ struct eata_sp { u_int8_t sp_hba_status; /* host adapter status */ u_int8_t sp_scsi_status; /* SCSI bus status */ u_int8_t sp_reserved[2]; /* reserved */ - u_int32_t sp_inv_residue; /* bytes not transfered */ + u_int32_t sp_inv_residue; /* bytes not transferred */ u_int32_t sp_ccbid; /* ID of software CCB */ u_int8_t sp_id_message; u_int8_t sp_que_message; diff --git a/sys/dev/ic/ncr5380.c b/sys/dev/ic/ncr5380.c index a0c4534c188..443c43b84cc 100644 --- a/sys/dev/ic/ncr5380.c +++ b/sys/dev/ic/ncr5380.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr5380.c,v 1.2 1996/10/31 01:01:34 niklas Exp $ */ +/* $OpenBSD: ncr5380.c,v 1.3 2001/01/25 03:50:50 todd Exp $ */ /* $NetBSD: ncr5380.c,v 1.3 1995/09/26 21:04:27 pk Exp $ */ /* @@ -678,7 +678,7 @@ ncr5380_dorequest(sc, target, lun, cmd, cmdlen, databuf, datalen, sent) &stat, &msg); #ifdef DEBUG if (ncr5380_debug) { - printf("ncr5380_dorequest: data transfered = %d\n", *sent); + printf("ncr5380_dorequest: data transferred = %d\n", *sent); } #endif diff --git a/sys/dev/isa/if_ecreg.h b/sys/dev/isa/if_ecreg.h index 767d683ab56..d0c8e8902e8 100644 --- a/sys/dev/isa/if_ecreg.h +++ b/sys/dev/isa/if_ecreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ecreg.h,v 1.1 1998/09/22 06:33:18 fgsch Exp $ */ +/* $OpenBSD: if_ecreg.h,v 1.2 2001/01/25 03:50:50 todd Exp $ */ /* $NetBSD: if_ecreg.h,v 1.1 1997/11/02 00:44:26 thorpej Exp $ */ /* @@ -45,7 +45,7 @@ #define ELINK2_PSPR 1 /* - * DrQ Timer Register. Determines number of bytes to be transfered during a + * DrQ Timer Register. Determines number of bytes to be transferred during a * DMA burst. */ #define ELINK2_DQTR 2 diff --git a/sys/dev/isa/if_edreg.h b/sys/dev/isa/if_edreg.h index 50493068a3a..08a2f58cd28 100644 --- a/sys/dev/isa/if_edreg.h +++ b/sys/dev/isa/if_edreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_edreg.h,v 1.4 1998/03/16 10:41:42 downsj Exp $ */ +/* $OpenBSD: if_edreg.h,v 1.5 2001/01/25 03:50:50 todd Exp $ */ /* $NetBSD: if_edreg.h,v 1.15 1996/01/10 16:49:22 chuck Exp $ */ /* @@ -277,7 +277,7 @@ #define ED_3COM_PSPR 1 /* - * DrQ Timer Register. Determines number of bytes to be transfered during a + * DrQ Timer Register. Determines number of bytes to be transferred during a * DMA burst. */ #define ED_3COM_DQTR 2 diff --git a/sys/dev/pci/if_tl.c b/sys/dev/pci/if_tl.c index 2e78b143e35..15e01aca1da 100644 --- a/sys/dev/pci/if_tl.c +++ b/sys/dev/pci/if_tl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tl.c,v 1.14 2000/11/14 03:56:32 jason Exp $ */ +/* $OpenBSD: if_tl.c,v 1.15 2001/01/25 03:50:51 todd Exp $ */ /* * Copyright (c) 1997, 1998 @@ -118,7 +118,7 @@ * To transmit frames, the driver again sets up lists and fragment * descriptors, only this time the buffers contain frame data that * is to be DMA'ed into the chip instead of out of it. Once the chip - * has transfered the data into its on-board SRAM, it will trigger a + * has transferred the data into its on-board SRAM, it will trigger a * TX 'end of frame' interrupt. It will also generate an 'end of channel' * interrupt when it reaches the end of the list. */ diff --git a/sys/dev/pci/ncr.c b/sys/dev/pci/ncr.c index 052e0225c33..01ce9e3254f 100644 --- a/sys/dev/pci/ncr.c +++ b/sys/dev/pci/ncr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ncr.c,v 1.52 2000/10/08 19:36:09 millert Exp $ */ +/* $OpenBSD: ncr.c,v 1.53 2001/01/25 03:50:51 todd Exp $ */ /* $NetBSD: ncr.c,v 1.63 1997/09/23 02:39:15 perry Exp $ */ /************************************************************************** @@ -1466,7 +1466,7 @@ static void ncr_attach (pcici_t tag, int unit); #if 0 static char ident[] = - "\n$OpenBSD: ncr.c,v 1.52 2000/10/08 19:36:09 millert Exp $\n"; + "\n$OpenBSD: ncr.c,v 1.53 2001/01/25 03:50:51 todd Exp $\n"; #endif static const u_long ncr_version = NCR_VERSION * 11 @@ -6369,7 +6369,7 @@ static void ncr_int_ma (ncb_p np, u_char dstat) /* - ** The data in the dma fifo has not been transfered to + ** The data in the dma fifo has not been transferred to ** the target -> add the amount to the rest ** and clear the data. ** Check the sstat2 register in case of wide transfer. diff --git a/sys/dev/tc/asc.c b/sys/dev/tc/asc.c index 863abac8f8e..03d633ad262 100644 --- a/sys/dev/tc/asc.c +++ b/sys/dev/tc/asc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asc.c,v 1.15 2000/09/10 01:11:52 miod Exp $ */ +/* $OpenBSD: asc.c,v 1.16 2001/01/25 03:50:52 todd Exp $ */ /* $NetBSD: asc.c,v 1.46 1998/05/08 15:39:01 mhitch Exp $ */ /*- @@ -584,7 +584,7 @@ asc_start(scsicmd) } asc->cmd[sdp->sd_drive] = scsicmd; /* - * Kludge: use a 60 second timeout if data is being transfered, + * Kludge: use a 60 second timeout if data is being transferred, * otherwise use a 30 minute timeout. */ timeout(asc_timeout, scsicmd, hz * (scsicmd->buflen == 0 ? diff --git a/sys/dev/tc/ascvar.h b/sys/dev/tc/ascvar.h index 0eeb964c1de..2321001085f 100644 --- a/sys/dev/tc/ascvar.h +++ b/sys/dev/tc/ascvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ascvar.h,v 1.3 1998/05/18 00:25:10 millert Exp $ */ +/* $OpenBSD: ascvar.h,v 1.4 2001/01/25 03:50:52 todd Exp $ */ /* $NetBSD: ascvar.h,v 1.4 1997/11/28 18:23:40 mhitch Exp $ */ @@ -13,7 +13,7 @@ typedef struct scsi_state { int error; /* errno to pass back to device driver */ u_char *dmaBufAddr; /* DMA buffer address */ int dmalen; /* amount to transfer in this chunk */ - int dmaresid; /* amount not transfered if chunk suspended */ + int dmaresid; /* amount not transferred if chunk suspended */ int buflen; /* total remaining amount of data to transfer */ char *buf; /* current pointer within scsicmd->buf */ int flags; /* see below */ diff --git a/sys/dev/usb/if_cue.c b/sys/dev/usb/if_cue.c index 1da4fabf14a..9a546f60c66 100644 --- a/sys/dev/usb/if_cue.c +++ b/sys/dev/usb/if_cue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_cue.c,v 1.5 2000/07/04 11:44:21 fgsch Exp $ */ +/* $OpenBSD: if_cue.c,v 1.6 2001/01/25 03:50:52 todd Exp $ */ /* $NetBSD: if_cue.c,v 1.21 2000/04/02 21:25:41 augustss Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000 @@ -48,7 +48,7 @@ * RX filter uses a 512-bit multicast hash table, single perfect entry * for the station address, and promiscuous mode. Unlike the ADMtek * and KLSI chips, the CATC ASIC supports read and write combining - * mode where multiple packets can be transfered using a single bulk + * mode where multiple packets can be transferred using a single bulk * transaction, which helps performance a great deal. */ |