Searched refs:PCI_ANY_ID (Results 1 - 2 of 2) sorted by last modified time

/u-boot/include/
H A Dpci.h582 #define PCI_ANY_ID (~0) macro
588 unsigned int vendor, device; /* Vendor and device ID or PCI_ANY_ID */
589 unsigned int subvendor, subdevice; /* Subsystem ID's or PCI_ANY_ID */
597 unsigned int vendor, device; /* Vendor and device ID or PCI_ANY_ID */
598 unsigned int class; /* Class ID, or PCI_ANY_ID */
599 unsigned int bus; /* Bus number, or PCI_ANY_ID */
600 unsigned int dev; /* Device number, or PCI_ANY_ID */
601 unsigned int func; /* Function number, or PCI_ANY_ID */
1661 * PCI_ANY_ID.
1665 .subvendor = PCI_ANY_ID,
[all...]
/u-boot/drivers/pci/
H A Dpci-uclass.c698 if ((id->vendor == PCI_ANY_ID || id->vendor == find->vendor) &&
699 (id->device == PCI_ANY_ID || id->device == find->device) &&
700 (id->subvendor == PCI_ANY_ID || id->subvendor == find->subvendor) &&
701 (id->subdevice == PCI_ANY_ID || id->subdevice == find->subdevice) &&

Completed in 71 milliseconds