Merge https://gitlab.denx.de/u-boot/custodians/u-boot-fsl-qoriq
[platform/kernel/u-boot.git] / drivers / pci_endpoint / pci_ep-uclass.c
index 9f53a9a..38a5f08 100644 (file)
@@ -209,3 +209,14 @@ UCLASS_DRIVER(pci_ep) = {
        .name           = "pci_ep",
        .flags          = DM_UC_FLAG_SEQ_ALIAS,
 };
+
+void pci_ep_init(void)
+{
+       struct udevice *dev;
+
+       for (uclass_first_device_check(UCLASS_PCI_EP, &dev);
+            dev;
+            uclass_next_device_check(&dev)) {
+               ;
+       }
+}