summaryrefslogtreecommitdiff
path: root/sys/dev/pci/ncr.c
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1998-07-21 07:16:38 +0000
committerJason Downs <downsj@cvs.openbsd.org>1998-07-21 07:16:38 +0000
commit2ff062829f7df4940cab076fbc33cb33ed5db1f0 (patch)
treeeaf5983ac76ae239785d31a67002d3e6a327d585 /sys/dev/pci/ncr.c
parent9b9292b7309125c211e95107a637231d0ee11bc1 (diff)
#ifdef for a weird card and a strange configuration
Diffstat (limited to 'sys/dev/pci/ncr.c')
-rw-r--r--sys/dev/pci/ncr.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/dev/pci/ncr.c b/sys/dev/pci/ncr.c
index ece4d6b7124..4dcb9dd84c4 100644
--- a/sys/dev/pci/ncr.c
+++ b/sys/dev/pci/ncr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ncr.c,v 1.39 1998/07/16 07:06:05 millert Exp $ */
+/* $OpenBSD: ncr.c,v 1.40 1998/07/21 07:16:37 downsj Exp $ */
/* $NetBSD: ncr.c,v 1.63 1997/09/23 02:39:15 perry Exp $ */
/**************************************************************************
@@ -1465,7 +1465,7 @@ static void ncr_attach (pcici_t tag, int unit);
#if 0
static char ident[] =
- "\n$OpenBSD: ncr.c,v 1.39 1998/07/16 07:06:05 millert Exp $\n";
+ "\n$OpenBSD: ncr.c,v 1.40 1998/07/21 07:16:37 downsj Exp $\n";
#endif
static const u_long ncr_version = NCR_VERSION * 11
@@ -3497,8 +3497,13 @@ static ncr_chip ncr_chip_table[] = {
{NCR_875_ID, 0x02, "ncr 53c875 fast20 wide scsi", 7, 16, 5,
FE_WIDE|FE_ULTRA|FE_DBLR|FE_CACHE_SET|FE_DFS|FE_LDSTR|FE_PFEN|FE_RAM}
,
+#ifdef NCR_NARROW_875J
+ {NCR_875_ID2, 0x00, "ncr 53c875j fast20 scsi", 4, 8, 5,
+ FE_ULTRA|FE_DBLR|FE_CACHE_SET|FE_DFS|FE_LDSTR|FE_PFEN|FE_RAM}
+#else
{NCR_875_ID2, 0x00, "ncr 53c875j fast20 wide scsi", 7, 16, 5,
FE_WIDE|FE_ULTRA|FE_DBLR|FE_CACHE_SET|FE_DFS|FE_LDSTR|FE_PFEN|FE_RAM}
+#endif
,
{NCR_885_ID, 0x00, "ncr 53c885 fast20 wide scsi", 7, 16, 5,
FE_WIDE|FE_ULTRA|FE_DBLR|FE_CACHE_SET|FE_DFS|FE_LDSTR|FE_PFEN|FE_RAM}