diff options
author | 2000-04-13 23:51:23 +0000 | |
---|---|---|
committer | 2000-04-13 23:51:23 +0000 | |
commit | a99118a5c9e093c3a6b9857312ab36ee7d53f01b (patch) | |
tree | 99ae787c290e80112db6e6641411dbd6d801aad7 | |
parent | remove bit definitions and associated macros for hifn_command.flags since it (diff) | |
download | wireguard-openbsd-a99118a5c9e093c3a6b9857312ab36ee7d53f01b.tar.xz wireguard-openbsd-a99118a5c9e093c3a6b9857312ab36ee7d53f01b.zip |
Add support for Adaptec 2930U2 controller.
-rw-r--r-- | sys/dev/pci/ahc_pci.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/ahc_pci.c b/sys/dev/pci/ahc_pci.c index 3c2c8c0c098..d144e89c3ea 100644 --- a/sys/dev/pci/ahc_pci.c +++ b/sys/dev/pci/ahc_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahc_pci.c,v 1.16 2000/04/13 04:25:10 smurph Exp $ */ +/* $OpenBSD: ahc_pci.c,v 1.17 2000/04/13 23:51:23 smurph Exp $ */ /* $NetBSD: ahc_pci.c,v 1.9 1996/10/21 22:56:24 thorpej Exp $ */ /* @@ -177,8 +177,9 @@ void *match, *aux; break; case PCI_VENDOR_ADP2: switch (PCI_PRODUCT(pa->pa_id)) { - case PCI_PRODUCT_ADP2_2940U2: case PCI_PRODUCT_ADP2_AIC7890: + case PCI_PRODUCT_ADP2_2940U2: + case PCI_PRODUCT_ADP2_2930U2: case PCI_PRODUCT_ADP2_AIC7892: case PCI_PRODUCT_ADP2_29160: case PCI_PRODUCT_ADP2_19160B: |