summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2000-12-07 20:49:37 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2000-12-07 20:49:37 +0000
commit0353f09e77ff22774bad03b240fe70961379a98b (patch)
tree56a8348d1049033b1de7b55b07951084df0fe758 /sys/dev
parentd106f96b6703e8df167dc95e45811a587f9f3e11 (diff)
new 3ware card, presumably backwards compatible; from freebsd
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/twe_pci.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/twe_pci.c b/sys/dev/pci/twe_pci.c
index 844839d6ada..abeefb8b5a9 100644
--- a/sys/dev/pci/twe_pci.c
+++ b/sys/dev/pci/twe_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: twe_pci.c,v 1.2 2000/09/29 19:58:41 mickey Exp $ */
+/* $OpenBSD: twe_pci.c,v 1.3 2000/12/07 20:49:36 mickey Exp $ */
/*
* Copyright (c) 2000 Michael Shalayeff
@@ -67,7 +67,8 @@ twe_pci_match(parent, match, aux)
struct pci_attach_args *pa = aux;
if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_TRIWARE &&
- PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_TRIWARE_ESCALADE)
+ (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_TRIWARE_ESCALADE ||
+ PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_TRIWARE_ESCALADE_ASIC))
return 1;
return 0;