Lines Matching full:ids
284 * @vendor: PCI vendor id to match, or %PCI_ANY_ID to match all vendor ids
285 * @device: PCI device id to match, or %PCI_ANY_ID to match all device ids
286 * @ss_vendor: PCI subsystem vendor id to match, or %PCI_ANY_ID to match all vendor ids
287 * @ss_device: PCI subsystem device id to match, or %PCI_ANY_ID to match all device ids
315 * @vendor: PCI vendor id to match, or %PCI_ANY_ID to match all vendor ids
316 * @device: PCI device id to match, or %PCI_ANY_ID to match all device ids
365 * @ids: A pointer to a null terminated list of struct pci_device_id structures
374 int pci_dev_present(const struct pci_device_id *ids) in pci_dev_present() argument
379 while (ids->vendor || ids->subvendor || ids->class_mask) { in pci_dev_present()
380 found = pci_get_dev_by_id(ids, NULL); in pci_dev_present()
385 ids++; in pci_dev_present()