From: Tim Harvey Date: Fri, 8 May 2015 22:16:07 +0000 (-0700) Subject: pci: display header for bus scan X-Git-Tag: v2015.07-rc2~80 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0373a7e91b1fc1c3652669a4481219daf06e12e9;p=u-boot pci: display header for bus scan If we are displaying detected PCI devices (CONFIG_PCI_SCAN_SHOW) display a 'PCI:' header prior to scan. Signed-off-by: Tim Harvey --- diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 3babd94805..5b6c6bc34e 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -503,6 +503,10 @@ int pci_hose_scan(struct pci_controller *hose) } #endif /* CONFIG_PCI_BOOTDELAY */ +#ifdef CONFIG_PCI_SCAN_SHOW + puts("PCI:\n"); +#endif + /* * Start scan at current_busno. * PCIe will start scan at first_busno+1.