Lines Matching refs:ids
103 const struct pci_device_id *ids = pdrv->id_table; in store_new_id() local
138 if (ids) { in store_new_id()
140 while (ids->vendor || ids->subvendor || ids->class_mask) { in store_new_id()
141 if (driver_data == ids->driver_data) { in store_new_id()
145 ids++; in store_new_id()
224 const struct pci_device_id *pci_match_id(const struct pci_device_id *ids, in pci_match_id() argument
227 if (ids) { in pci_match_id()
228 while (ids->vendor || ids->subvendor || ids->class_mask) { in pci_match_id()
229 if (pci_match_one_device(ids, dev)) in pci_match_id()
230 return ids; in pci_match_id()
231 ids++; in pci_match_id()