diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2002-11-19 18:40:18 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2002-11-19 18:40:18 +0000 |
commit | 6de774d6cba7e3cd5ab65ca8bd33d4e854d185ac (patch) | |
tree | e947e412c38cb1b45d34a5c858acb00564f371df /sys/dev/pci/adw_pci.c | |
parent | f8eb256c65fe796edfbbb90ae32c5502ca585795 (diff) |
Add a simplistic table driven lookup routine and use it where appropriate.
Diffstat (limited to 'sys/dev/pci/adw_pci.c')
-rw-r--r-- | sys/dev/pci/adw_pci.c | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/sys/dev/pci/adw_pci.c b/sys/dev/pci/adw_pci.c index 3a262c46680..d75cea1094b 100644 --- a/sys/dev/pci/adw_pci.c +++ b/sys/dev/pci/adw_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: adw_pci.c,v 1.11 2002/03/14 01:26:58 millert Exp $ */ +/* $OpenBSD: adw_pci.c,v 1.12 2002/11/19 18:40:16 jason Exp $ */ /* $NetBSD: adw_pci.c,v 1.7 2000/05/26 15:13:46 dante Exp $ */ /* @@ -85,6 +85,12 @@ struct cfattach adw_pci_ca = sizeof(ADW_SOFTC), adw_pci_match, adw_pci_attach }; +const struct pci_matchid adw_pci_devices[] = { + { PCI_VENDOR_ADVSYS, PCI_PRODUCT_ADVSYS_WIDE }, + { PCI_VENDOR_ADVSYS, PCI_PRODUCT_ADVSYS_U2W }, + { PCI_VENDOR_ADVSYS, PCI_PRODUCT_ADVSYS_U3W }, +}; + /******************************************************************************/ /* * Check the slots looking for a board we recognise @@ -97,17 +103,8 @@ adw_pci_match(parent, match, aux) void *match; void *aux; { - struct pci_attach_args *pa = aux; - - if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_ADVSYS) - switch (PCI_PRODUCT(pa->pa_id)) { - case PCI_PRODUCT_ADVSYS_WIDE: - case PCI_PRODUCT_ADVSYS_U2W: - case PCI_PRODUCT_ADVSYS_U3W: - return (1); - } - - return 0; + return (pci_matchbyid((struct pci_attach_args *)aux, adw_pci_devices, + sizeof(adw_pci_devices)/sizeof(adw_pci_devices[0]))); } |