aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2017-07-12 12:06:50 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-07-13 10:19:45 +1000
commit2fc948354c16b8e4bd5b7b023e7b17e11460cd5c (patch)
treeba7830905a90ea08b2453d9c3206f01cf1a868bd /core
parente4da615a48ee94db1b73bf66fc1d7f94237d8bbb (diff)
downloadskiboot-2fc948354c16b8e4bd5b7b023e7b17e11460cd5c.zip
skiboot-2fc948354c16b8e4bd5b7b023e7b17e11460cd5c.tar.gz
skiboot-2fc948354c16b8e4bd5b7b023e7b17e11460cd5c.tar.bz2
pci: Print resetting PHB notice at higher log level
Currently during boot there a long delay while we wait for the PHBs to be reset and train. During this time, there is no output from skiboot and the last message doesn't give an indication of what's happening. This boosts the PHB reset message from info to notice so users can see what's happening during this long period of waiting. Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'core')
-rw-r--r--core/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pci.c b/core/pci.c
index cc18db1..907160d 100644
--- a/core/pci.c
+++ b/core/pci.c
@@ -1737,7 +1737,7 @@ void pci_init_slots(void)
if (platform.pre_pci_fixup)
platform.pre_pci_fixup();
- prlog(PR_INFO, "PCI: Resetting PHBs...\n");
+ prlog(PR_NOTICE, "PCI: Resetting PHBs and training links...\n");
pci_do_jobs(pci_reset_phb);
prlog(PR_NOTICE, "PCI: Probing slots...\n");