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 .
This commit is contained in:
Andreas Schulz 1994-08-19 21:02:05 +00:00
parent 1b72a208c7
commit a41bb423b1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2137

View File

@ -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];