Lines Matching full:ids
287 * @vendor: PCI vendor id to match, or %PCI_ANY_ID to match all vendor ids
288 * @device: PCI device id to match, or %PCI_ANY_ID to match all device ids
289 * @ss_vendor: PCI subsystem vendor id to match, or %PCI_ANY_ID to match all vendor ids
290 * @ss_device: PCI subsystem device id to match, or %PCI_ANY_ID to match all device ids
318 * @vendor: PCI vendor id to match, or %PCI_ANY_ID to match all vendor ids
319 * @device: PCI device id to match, or %PCI_ANY_ID to match all device ids
368 * @ids: A pointer to a null terminated list of struct pci_device_id structures
377 int pci_dev_present(const struct pci_device_id *ids) in pci_dev_present() argument
381 while (ids->vendor || ids->subvendor || ids->class_mask) { in pci_dev_present()
382 found = pci_get_dev_by_id(ids, NULL); in pci_dev_present()
387 ids++; in pci_dev_present()