diff options
author | Tom Rini <trini@konsulko.com> | 2017-04-04 09:18:57 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-04 09:18:57 -0400 |
commit | 7d67bb1daf2daae7bce49147494f8c45001e76b1 (patch) | |
tree | cd53bbf4d3fd5701a6396a8918e629b95b70b1fa /drivers/pci | |
parent | f532703665ae5e5957211bbc4e7296a8313cc403 (diff) | |
parent | 44d5c371a63e56eb53866b645e75396fa1d95510 (diff) | |
download | u-boot-7d67bb1daf2daae7bce49147494f8c45001e76b1.zip u-boot-7d67bb1daf2daae7bce49147494f8c45001e76b1.tar.gz u-boot-7d67bb1daf2daae7bce49147494f8c45001e76b1.tar.bz2 |
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/pci-uclass.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c index a1408f5..40f59c0 100644 --- a/drivers/pci/pci-uclass.c +++ b/drivers/pci/pci-uclass.c @@ -551,9 +551,10 @@ int dm_pci_hose_probe_bus(struct udevice *bus) * pci_match_one_device - Tell if a PCI device structure has a matching * PCI device id structure * @id: single PCI device id structure to match - * @dev: the PCI device structure to match against + * @find: the PCI device id structure to match against * - * Returns the matching pci_device_id structure or %NULL if there is no match. + * Returns true if the finding pci_device_id structure matched or false if + * there is no match. */ static bool pci_match_one_id(const struct pci_device_id *id, const struct pci_device_id *find) |