summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorats <ats@FreeBSD.org>1994-08-19 21:02:05 +0000
committerats <ats@FreeBSD.org>1994-08-19 21:02:05 +0000
commit4dde745bf6b423ac06de3b788f720bfc0a89ee5d (patch)
tree2f037574e1a0bff1c0f35e39c0c81265d003a94d
parent306005523599697e53407734c1d3bbbf771795ce (diff)
downloadFreeBSD-src-4dde745bf6b423ac06de3b788f720bfc0a89ee5d.zip
FreeBSD-src-4dde745bf6b423ac06de3b788f720bfc0a89ee5d.tar.gz
Reviewed by:
Corrected a little typo in a comment. Throw out the typedef timeout_t with an ifdef __FreeBSD__, it is already defined in sys/systm.h .
-rw-r--r--sys/i386/isa/aha1542.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/i386/isa/aha1542.c b/sys/i386/isa/aha1542.c
index db400b5..2e5c8ed 100644
--- a/sys/i386/isa/aha1542.c
+++ b/sys/i386/isa/aha1542.c
@@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
- * $Id: aha1542.c,v 1.29 1994/08/14 21:06:00 ats Exp $
+ * $Id: aha1542.c,v 1.30 1994/08/18 23:36:37 phk Exp $
*/
/*
@@ -43,7 +43,7 @@
#define NAHA 1
#endif /*KERNEL */
-#ifndef NetBSD
+#if !defined(NetBSD) && !defined(__FreeBSD__)
typedef timeout_func_t timeout_t;
#endif
@@ -304,7 +304,7 @@ struct aha_data {
struct aha_ccb aha_ccb[AHA_MBX_SIZE]; /* all the CCBs */
int aha_int; /* our irq level */
int aha_dma; /* out DMA req channel */
- int aha_scsi_dev; /* ourscsi bus address */
+ int aha_scsi_dev; /* our scsi bus address */
struct scsi_link sc_link; /* prototype for subdevs */
} *ahadata[NAHA];
OpenPOWER on IntegriCloud