]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
PCI: endpoint: Add an API to get matching "pci_epf_device_id"
authorKishon Vijay Abraham I <kishon@ti.com>
Fri, 18 Aug 2017 14:57:54 +0000 (20:27 +0530)
committerBjorn Helgaas <bhelgaas@google.com>
Fri, 18 Aug 2017 15:42:45 +0000 (10:42 -0500)
Add an API to get "pci_epf_device_id" matching the EPF name. This can be
used by the EPF driver to get the driver data corresponding to the EPF
device name.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
[bhelgaas: folded in "while" loop termination fix from Colin Ian King
<colin.king@canonical.com>]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/endpoint/pci-epf-core.c
include/linux/pci-epf.h

index 6877d6a5bcc9770136f3f14d100fd90ddc965396..f14e2be52658f7c43ea1bd8b9ead183838e7aa5f 100644 (file)
@@ -267,6 +267,22 @@ struct pci_epf *pci_epf_create(const char *name)
 }
 EXPORT_SYMBOL_GPL(pci_epf_create);
 
+const struct pci_epf_device_id *
+pci_epf_match_device(const struct pci_epf_device_id *id, struct pci_epf *epf)
+{
+       if (!id || !epf)
+               return NULL;
+
+       while (*id->name) {
+               if (strcmp(epf->name, id->name) == 0)
+                       return id;
+               id++;
+       }
+
+       return NULL;
+}
+EXPORT_SYMBOL_GPL(pci_epf_match_device);
+
 static void pci_epf_dev_release(struct device *dev)
 {
        struct pci_epf *epf = to_pci_epf(dev);
index 0d529cb9014398df67893a72efb7f2f171111345..6ed63b5e106b0bc1397b6013e3bb01c6c275edd6 100644 (file)
@@ -149,6 +149,8 @@ static inline void *epf_get_drvdata(struct pci_epf *epf)
        return dev_get_drvdata(&epf->dev);
 }
 
+const struct pci_epf_device_id *
+pci_epf_match_device(const struct pci_epf_device_id *id, struct pci_epf *epf);
 struct pci_epf *pci_epf_create(const char *name);
 void pci_epf_destroy(struct pci_epf *epf);
 int __pci_epf_register_driver(struct pci_epf_driver *driver,