Lines Matching refs:vendor
289 * pci_get_subsys - begin or continue searching for a PCI device by vendor/subvendor/device/subdevice id
290 * @vendor: PCI vendor id to match, or %PCI_ANY_ID to match all vendor ids
292 * @ss_vendor: PCI subsystem vendor id to match, or %PCI_ANY_ID to match all vendor ids
297 * with a matching @vendor, @device, @ss_vendor and @ss_device, a pointer to its
304 struct pci_dev *pci_get_subsys(unsigned int vendor, unsigned int device,
309 .vendor = vendor,
320 * pci_get_device - begin or continue searching for a PCI device by vendor/device id
321 * @vendor: PCI vendor id to match, or %PCI_ANY_ID to match all vendor ids
326 * found with a matching @vendor and @device, the reference count to the
333 struct pci_dev *pci_get_device(unsigned int vendor, unsigned int device,
336 return pci_get_subsys(vendor, device, PCI_ANY_ID, PCI_ANY_ID, from);
357 .vendor = PCI_ANY_ID,
385 while (ids->vendor || ids->subvendor || ids->class_mask) {