summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin T. Gibbs <gibbs@FreeBSD.org>1999-05-17 21:53:51 +0000
committerJustin T. Gibbs <gibbs@FreeBSD.org>1999-05-17 21:53:51 +0000
commit40ca72018b06b1b219f49586fae50b01a646d9eb (patch)
treed9af24c36a50220a428a2127b284b7165472463e
parent923dc21bfe75801b9c0f6c4b7233e1e2b0aa1405 (diff)
Notes
-rw-r--r--sys/dev/aic7xxx/aic7xxx.c6
-rw-r--r--sys/dev/aic7xxx/aic7xxx.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/aic7xxx/aic7xxx.c b/sys/dev/aic7xxx/aic7xxx.c
index a1095a2eedda..9b0dd4c53a3b 100644
--- a/sys/dev/aic7xxx/aic7xxx.c
+++ b/sys/dev/aic7xxx/aic7xxx.c
@@ -36,7 +36,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: aic7xxx.c,v 1.26 1999/05/08 21:58:56 dfr Exp $
+ * $Id: aic7xxx.c,v 1.27 1999/05/14 05:07:21 gibbs Exp $
*/
/*
* A few notes on features of the driver.
@@ -362,7 +362,7 @@ static __inline struct ahc_initiator_tinfo *
static __inline void
ahcfreescb(struct ahc_softc *ahc, struct scb *scb);
static __inline struct scb *
- ahcgetscb(struct ahc_softc *ahc);
+ ahcgetscb(struct ahc_softc *ahc);
static __inline u_int32_t
ahc_hscb_busaddr(struct ahc_softc *ahc, u_int index)
@@ -3691,7 +3691,7 @@ ahc_done(struct ahc_softc *ahc, struct scb *scb)
/*
* We performed autosense retrieval.
*
- * bzero from the sense data before having
+ * bzero the sense data before having
* the drive fill it. The SCSI spec mandates
* that any untransfered data should be
* assumed to be zero. Complete the 'bounce'
diff --git a/sys/dev/aic7xxx/aic7xxx.h b/sys/dev/aic7xxx/aic7xxx.h
index f4776d0b6e7f..3fda7294dc87 100644
--- a/sys/dev/aic7xxx/aic7xxx.h
+++ b/sys/dev/aic7xxx/aic7xxx.h
@@ -3,7 +3,7 @@
* SCSI controllers. This is used to implement product specific
* probe and attach routines.
*
- * Copyright (c) 1994, 1995, 1996, 1997, 1998 Justin T. Gibbs.
+ * Copyright (c) 1994, 1995, 1996, 1997, 1998, 1999 Justin T. Gibbs.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -34,7 +34,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: aic7xxx.h,v 1.7 1999/04/23 23:27:30 gibbs Exp $
+ * $Id: aic7xxx.h,v 1.8 1999/05/14 05:07:23 gibbs Exp $
*/
#ifndef _AIC7XXX_H_