From: Enrico Weigelt <info@xxxxxxxxx> Introduce a little helper for getting pci device via struct pci_device_id, helpful for reducing a little bit of boilerplate. Signed-off-by: Enrico Weigelt, metux IT consult <info@xxxxxxxxx> --- include/linux/pci.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/include/linux/pci.h b/include/linux/pci.h index eb9f371aa77c..f6650b13724a 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -1050,6 +1050,21 @@ struct pci_bus *pci_find_next_bus(const struct pci_bus *from); struct pci_dev *pci_get_device(unsigned int vendor, unsigned int device, struct pci_dev *from); + +/** + * pci_get_device_by_id() - get pci dev by struct pci_device_id + * @id: pci_device_id struct + * + * Retrieve PCI device by struct pci_device_id struct + * + * @return: pointer to struct pci_dev if sucessful, NULL otherwise + */ +static inline struct pci_dev *pci_get_device_by_id( + const struct pci_device_id *id) +{ + return pci_get_device(id->vendor, id->device, NULL); +} + struct pci_dev *pci_get_subsys(unsigned int vendor, unsigned int device, unsigned int ss_vendor, unsigned int ss_device, struct pci_dev *from); -- 2.11.0