Lines Matching full:vendor
283 …* pci_get_subsys - begin or continue searching for a PCI device by vendor/subvendor/device/subdevi…
284 * @vendor: PCI vendor id to match, or %PCI_ANY_ID to match all vendor ids
286 * @ss_vendor: PCI subsystem vendor id to match, or %PCI_ANY_ID to match all vendor ids
291 * with a matching @vendor, @device, @ss_vendor and @ss_device, a pointer to its
298 struct pci_dev *pci_get_subsys(unsigned int vendor, unsigned int device, in pci_get_subsys() argument
303 .vendor = vendor, in pci_get_subsys()
314 * pci_get_device - begin or continue searching for a PCI device by vendor/device id
315 * @vendor: PCI vendor id to match, or %PCI_ANY_ID to match all vendor ids
320 * found with a matching @vendor and @device, the reference count to the
327 struct pci_dev *pci_get_device(unsigned int vendor, unsigned int device, in pci_get_device() argument
330 return pci_get_subsys(vendor, device, PCI_ANY_ID, PCI_ANY_ID, from); in pci_get_device()
351 .vendor = PCI_ANY_ID, in pci_get_class()
379 while (ids->vendor || ids->subvendor || ids->class_mask) { in pci_dev_present()