Lines Matching refs:dev_table
147 ath_pci_probe_device(device_t dev, const struct pci_device_id *dev_table, int nentries) in ath_pci_probe_device() argument
160 if (! dev_table[i].match_populated) in ath_pci_probe_device()
163 if (dev_table[i].match_vendor_id && in ath_pci_probe_device()
164 (dev_table[i].vendor_id != vendor_id)) in ath_pci_probe_device()
166 if (dev_table[i].match_device_id && in ath_pci_probe_device()
167 (dev_table[i].device_id != device_id)) in ath_pci_probe_device()
169 if (dev_table[i].match_sub_vendor_id && in ath_pci_probe_device()
170 (dev_table[i].sub_vendor_id != sub_vendor_id)) in ath_pci_probe_device()
172 if (dev_table[i].match_sub_device_id && in ath_pci_probe_device()
173 (dev_table[i].sub_device_id != sub_device_id)) in ath_pci_probe_device()
177 return (&dev_table[i]); in ath_pci_probe_device()