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()
222 const struct pci_device_id *pci_match_id(const struct pci_device_id *ids, in pci_match_id() argument
225 if (ids) { in pci_match_id()
226 while (ids->vendor || ids->subvendor || ids->class_mask) { in pci_match_id()
227 if (pci_match_one_device(ids, dev)) in pci_match_id()
228 return ids; in pci_match_id()
229 ids++; in pci_match_id()