diff options
author | 2000-12-07 20:49:36 +0000 | |
---|---|---|
committer | 2000-12-07 20:49:36 +0000 | |
commit | 1ac40323a1d7e31913af46b848c9668744e28259 (patch) | |
tree | 19962a28d35a1c607abbc9ab5ce524be0549a20d | |
parent | regen (diff) | |
download | wireguard-openbsd-1ac40323a1d7e31913af46b848c9668744e28259.tar.xz wireguard-openbsd-1ac40323a1d7e31913af46b848c9668744e28259.zip |
new 3ware card, presumably backwards compatible; from freebsd
-rw-r--r-- | sys/dev/pci/twe_pci.c | 5 |
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; |