diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-18 03:36:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-18 03:36:36 +0000 |
commit | 28c2e21a675b8bc10699681465842ae7d7425293 (patch) | |
tree | b440705d5622be0215cd0a8d918252cf9e1a5d7b /sys/dev/ic | |
parent | dbcec5ec471e3e1a74d035c14d587f66ebf0526c (diff) |
#ifdef SMALL_KERNEL -> #define ISP_STRIPPED
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/isp.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/ic/isp.c b/sys/dev/ic/isp.c index 2f5d2de8634..a8a9440b2f6 100644 --- a/sys/dev/ic/isp.c +++ b/sys/dev/ic/isp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp.c,v 1.34 2003/10/21 18:58:49 jmc Exp $ */ +/* $OpenBSD: isp.c,v 1.35 2004/07/18 03:36:35 deraadt Exp $ */ /* * Machine and OS Independent (well, as best as possible) * code for the Qlogic ISP SCSI adapters. @@ -4874,6 +4874,10 @@ static const u_int16_t mbpscsi[] = { ISPOPMAP(0x01, 0x01) /* 0x5d: GET NOST DATA */ }; +#ifdef SMALL_KERNEL +#define ISP_STRIPPED +#endif + #ifndef ISP_STRIPPED static char *scsi_mbcmd_names[] = { "NO-OP", |