diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 1998-04-24 18:23:20 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 1998-04-24 18:23:20 +0000 |
| commit | f05ebe7324514f36cfbeca7f0a8620628893ce9b (patch) | |
| tree | af98ef765f3094d295572d468609e14c1c8c1de0 /sys/dev/isp | |
| parent | c46308e85cdc6918e2ce190f6c122f4a40bf7ecd (diff) | |
Notes
Diffstat (limited to 'sys/dev/isp')
| -rw-r--r-- | sys/dev/isp/isp_freebsd.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/dev/isp/isp_freebsd.h b/sys/dev/isp/isp_freebsd.h index 6f45e9e8bfa6..4240c0aa656f 100644 --- a/sys/dev/isp/isp_freebsd.h +++ b/sys/dev/isp/isp_freebsd.h @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* $Id: isp_freebsd.h,v 1.9 1998/04/17 17:09:29 mjacob Exp $ */ +/* $Id: isp_freebsd.h,v 1.1 1998/04/22 17:54:52 mjacob Exp $ */ /* * Qlogic ISP SCSI Host Adapter FreeBSD Wrapper Definitions (non CAM version) *--------------------------------------- @@ -51,7 +51,13 @@ #include <vm/pmap.h> #include <sys/kernel.h> -#include <osreldate.h> +/* + * Quick hack fix to get around osreldate.h not being present. + * #include <osreldate.h> + */ +#ifndef __FreeBSD_version +#define __FreeBSD_version 300002 +#endif #define ISP_SCSI_XFER_T struct scsi_xfer struct isposinfo { |
