diff options
author | 2004-07-18 03:36:35 +0000 | |
---|---|---|
committer | 2004-07-18 03:36:35 +0000 | |
commit | 42eff25800ab78f13dccb07a8bbd3ae4fa87cbda (patch) | |
tree | 27e4c0dbdc19524adb3f52290fc472c3da9200d5 | |
parent | Make bsd.rd a default set. (diff) | |
download | wireguard-openbsd-42eff25800ab78f13dccb07a8bbd3ae4fa87cbda.tar.xz wireguard-openbsd-42eff25800ab78f13dccb07a8bbd3ae4fa87cbda.zip |
#ifdef SMALL_KERNEL -> #define ISP_STRIPPED
-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", |