From: Bin Meng Date: Mon, 27 Jul 2015 07:33:39 +0000 (-0700) Subject: dm: pci: Allow scan bridge child devices before relocation X-Git-Tag: v2015.10-rc2~410^2~71 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=df189d9ba3f8fd1bc67e3c0c3c4ace16cd065ee1;p=platform%2Fkernel%2Fu-boot.git dm: pci: Allow scan bridge child devices before relocation On some platforms pci devices behind bridge need to be probed (eg: a pci uart on recent x86 chipset) before relocation. Remove such limitation so that dm pci can be used before relocation. Signed-off-by: Bin Meng Acked-by: Simon Glass --- diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c index c7d93f9..6262f35 100644 --- a/drivers/pci/pci-uclass.c +++ b/drivers/pci/pci-uclass.c @@ -641,10 +641,6 @@ static int pci_uclass_post_probe(struct udevice *bus) { int ret; - /* Don't scan buses before relocation */ - if (!(gd->flags & GD_FLG_RELOC)) - return 0; - debug("%s: probing bus %d\n", __func__, bus->seq); ret = pci_bind_bus_devices(bus); if (ret)