diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2017-03-27 15:15:01 +0530 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2017-04-11 14:18:37 -0500 |
commit | 3a401a2ce1cb6f6e52b78f21aa82e5d90e35c430 (patch) | |
tree | 348b395dea242f37306da3a493c779fc3fd88ca8 /include/linux/pci-epf.h | |
parent | bea37d3d3121d051b12541f06327d7ac63996fc0 (diff) | |
download | op-kernel-dev-3a401a2ce1cb6f6e52b78f21aa82e5d90e35c430.zip op-kernel-dev-3a401a2ce1cb6f6e52b78f21aa82e5d90e35c430.tar.gz |
PCI: endpoint: Create configfs entry for EPC device and EPF driver
Invoke APIs provided by pci-ep-cfs to create configfs entry for every EPC
device and EPF driver to help users in creating EPF device and binding the
EPF device to the EPC device.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'include/linux/pci-epf.h')
-rw-r--r-- | include/linux/pci-epf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/pci-epf.h b/include/linux/pci-epf.h index 5628714..0d529cb 100644 --- a/include/linux/pci-epf.h +++ b/include/linux/pci-epf.h @@ -82,6 +82,7 @@ struct pci_epf_ops { * @driver: PCI EPF driver * @ops: set of function pointers for performing EPF operations * @owner: the owner of the module that registers the PCI EPF driver + * @group: configfs group corresponding to the PCI EPF driver * @id_table: identifies EPF devices for probing */ struct pci_epf_driver { @@ -91,6 +92,7 @@ struct pci_epf_driver { struct device_driver driver; struct pci_epf_ops *ops; struct module *owner; + struct config_group *group; const struct pci_epf_device_id *id_table; }; |