diff options
author | Steve Murphree <smurph@cvs.openbsd.org> | 2000-04-13 23:51:24 +0000 |
---|---|---|
committer | Steve Murphree <smurph@cvs.openbsd.org> | 2000-04-13 23:51:24 +0000 |
commit | bfda8d2882d169a87e51f539a4432a9effdfbe55 (patch) | |
tree | f451f5de3bf34f35966422979d0e427128c30632 /sys | |
parent | 18a09469248949c219e1d9b9416a8a5a17764ce3 (diff) |
Add support for Adaptec 2930U2 controller.
Diffstat (limited to 'sys')
-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: |