diff options
| author | wiz <wiz@NetBSD.org> | 2001-07-08 18:06:42 +0000 |
|---|---|---|
| committer | wiz <wiz@NetBSD.org> | 2001-07-08 18:06:42 +0000 |
| commit | cc0b68092ef53cebae74bf58d39fed30963cca2b (patch) | |
| tree | e588376480d0cb40a76c438837a9096a45662f9d /sys/dev | |
| parent | 3d98de578fd0e746e964a4316929885d0838d0ed (diff) | |
Correct various misspellings of 'transfer' and inflected forms.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ata/wdvar.h | 12 | ||||
| -rw-r--r-- | sys/dev/ic/aic7xxx.c | 8 | ||||
| -rw-r--r-- | sys/dev/ic/ncr5380sbc.c | 4 | ||||
| -rw-r--r-- | sys/dev/ic/sunscpal.c | 4 | ||||
| -rw-r--r-- | sys/dev/isa/fd.c | 6 | ||||
| -rw-r--r-- | sys/dev/mca/edvar.h | 4 | ||||
| -rw-r--r-- | sys/dev/scsipi/st.c | 4 |
7 files changed, 21 insertions, 21 deletions
diff --git a/sys/dev/ata/wdvar.h b/sys/dev/ata/wdvar.h index 46af62eb8b0..bdf456fd1d0 100644 --- a/sys/dev/ata/wdvar.h +++ b/sys/dev/ata/wdvar.h @@ -1,4 +1,4 @@ -/* $NetBSD: wdvar.h,v 1.6 2000/05/15 08:32:08 bouyer Exp $ */ +/* $NetBSD: wdvar.h,v 1.7 2001/07/08 18:06:45 wiz Exp $ */ /* * Copyright (c) 1998 Manuel Bouyer. @@ -39,15 +39,15 @@ struct ata_bio { #define ATA_POLL 0x0002 /* poll for completion */ #define ATA_ITSDONE 0x0004 /* the transfer is as done as it gets */ #define ATA_SINGLE 0x0008 /* transfer has to be done in single-sector mode */ -#define ATA_LBA 0x0010 /* tranfert uses LBA adressing */ -#define ATA_READ 0x0020 /* tranfert is a read (otherwise a write) */ +#define ATA_LBA 0x0010 /* transfer uses LBA adressing */ +#define ATA_READ 0x0020 /* transfer is a read (otherwise a write) */ #define ATA_CORR 0x0040 /* transfer had a corrected error */ 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 nblks; /* number of block currently transfering */ - int nbytes; /* number of bytes currently transfering */ + daddr_t blkdone; /* number of blks transferred */ + daddr_t nblks; /* number of block currently transferring */ + int nbytes; /* number of bytes currently transferring */ long bcount; /* total number of bytes */ char* databuf; /* data buffer adress */ volatile int error; diff --git a/sys/dev/ic/aic7xxx.c b/sys/dev/ic/aic7xxx.c index 12ce8b63934..7e6b4fbbf2c 100644 --- a/sys/dev/ic/aic7xxx.c +++ b/sys/dev/ic/aic7xxx.c @@ -1,4 +1,4 @@ -/* $NetBSD: aic7xxx.c,v 1.77 2001/07/07 16:13:46 thorpej Exp $ */ +/* $NetBSD: aic7xxx.c,v 1.78 2001/07/08 18:06:45 wiz Exp $ */ /* * Generic driver for the aic7xxx based adaptec SCSI controllers @@ -771,7 +771,7 @@ static const int num_phases = (sizeof(phase_table)/sizeof(phase_table[0])) - 1; /* * Valid SCSIRATE values. (p. 3-17) - * Provides a mapping of tranfer periods in ns to the proper value to + * Provides a mapping of transfer periods in ns to the proper value to * stick in the scsiscfr reg to use that transfer rate. */ #define AHC_SYNCRATE_DT 0 @@ -1884,7 +1884,7 @@ ahc_handle_seqint(struct ahc_softc *ahc, u_int intstat) * that requires host assistance for completion. * While handling the message phase(s), we will be * notified by the sequencer after each byte is - * transfered so we can track bus phases. + * transferred so we can track bus phases. * * If this is the first time we've seen a HOST_MSG_LOOP, * initialize the state of the host message loop. @@ -3375,7 +3375,7 @@ ahc_done(struct ahc_softc *ahc, struct scb *scb) * * zero the sense data before having * the drive fill it. The SCSI spec mandates - * that any untransfered data should be + * that any untransferred data should be * assumed to be zero. Complete the 'bounce' * of sense information through buffers accessible * via bus-space by copying it into the clients diff --git a/sys/dev/ic/ncr5380sbc.c b/sys/dev/ic/ncr5380sbc.c index 74fc5f4f880..f4cb05bc1a3 100644 --- a/sys/dev/ic/ncr5380sbc.c +++ b/sys/dev/ic/ncr5380sbc.c @@ -1,4 +1,4 @@ -/* $NetBSD: ncr5380sbc.c,v 1.42 2001/07/07 16:13:49 thorpej Exp $ */ +/* $NetBSD: ncr5380sbc.c,v 1.43 2001/07/08 18:06:46 wiz Exp $ */ /* * Copyright (c) 1995 David Jones, Gordon W. Ross @@ -113,7 +113,7 @@ static void ncr5380_machine __P((struct ncr5380_softc *)); void ncr5380_abort __P((struct ncr5380_softc *)); void ncr5380_cmd_timeout __P((void *)); /* - * Action flags returned by the info_tranfer functions: + * Action flags returned by the info_transfer functions: * (These determine what happens next.) */ #define ACT_CONTINUE 0x00 /* No flags: expect another phase */ diff --git a/sys/dev/ic/sunscpal.c b/sys/dev/ic/sunscpal.c index ce8871d5dee..f60f0cb1f64 100644 --- a/sys/dev/ic/sunscpal.c +++ b/sys/dev/ic/sunscpal.c @@ -1,4 +1,4 @@ -/* $NetBSD: sunscpal.c,v 1.4 2001/07/07 16:13:51 thorpej Exp $ */ +/* $NetBSD: sunscpal.c,v 1.5 2001/07/08 18:06:46 wiz Exp $ */ /* * Copyright (c) 2001 Matthew Fredette @@ -119,7 +119,7 @@ static void sunscpal_machine __P((struct sunscpal_softc *)); void sunscpal_abort __P((struct sunscpal_softc *)); void sunscpal_cmd_timeout __P((void *)); /* - * Action flags returned by the info_tranfer functions: + * Action flags returned by the info_transfer functions: * (These determine what happens next.) */ #define ACT_CONTINUE 0x00 /* No flags: expect another phase */ diff --git a/sys/dev/isa/fd.c b/sys/dev/isa/fd.c index 1c3c8cf954b..5fb5e95ba4b 100644 --- a/sys/dev/isa/fd.c +++ b/sys/dev/isa/fd.c @@ -1,4 +1,4 @@ -/* $NetBSD: fd.c,v 1.17 2001/06/07 16:48:09 briggs Exp $ */ +/* $NetBSD: fd.c,v 1.18 2001/07/08 18:06:46 wiz Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -242,8 +242,8 @@ struct fd_softc { int sc_bcount; /* byte count left */ int sc_opts; /* user-set options */ int sc_skip; /* bytes already transferred */ - int sc_nblks; /* number of blocks currently tranferring */ - int sc_nbytes; /* number of bytes currently tranferring */ + int sc_nblks; /* number of blocks currently transferring */ + int sc_nbytes; /* number of bytes currently transferring */ int sc_drive; /* physical unit number */ int sc_flags; diff --git a/sys/dev/mca/edvar.h b/sys/dev/mca/edvar.h index 4d79e9fa9d4..a08c49a12d0 100644 --- a/sys/dev/mca/edvar.h +++ b/sys/dev/mca/edvar.h @@ -1,4 +1,4 @@ -/* $NetBSD: edvar.h,v 1.4 2001/05/04 12:58:34 jdolecek Exp $ */ +/* $NetBSD: edvar.h,v 1.5 2001/07/08 18:06:46 wiz Exp $ */ /* * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -45,7 +45,7 @@ struct ed_softc { struct simplelock sc_q_lock; struct callout sc_edstart; - void *sc_data; /* pointer to data for tranfer */ + void *sc_data; /* pointer to data for transfer */ long sc_bcount; /* bytes available in buffer */ daddr_t sc_rawblkno; /* starting blkno of transfer */ int sc_read; /* Read Transfer ? */ diff --git a/sys/dev/scsipi/st.c b/sys/dev/scsipi/st.c index 60a07928399..fa52c8400a5 100644 --- a/sys/dev/scsipi/st.c +++ b/sys/dev/scsipi/st.c @@ -1,4 +1,4 @@ -/* $NetBSD: st.c,v 1.141 2001/06/18 09:05:05 bouyer Exp $ */ +/* $NetBSD: st.c,v 1.142 2001/07/08 18:06:47 wiz Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -1976,7 +1976,7 @@ st_interpret_sense(xs) st->blksize -= 512; } /* - * If data wanted and no data was tranfered, do it immediatly + * If data wanted and no data was transferred, do it immediately */ if (xs->datalen && xs->resid >= xs->datalen) { if (st->flags & ST_EIO_PENDING) |
