diff options
author | Michael Neuling <mikey@neuling.org> | 2017-07-12 12:06:50 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-07-13 10:19:45 +1000 |
commit | 2fc948354c16b8e4bd5b7b023e7b17e11460cd5c (patch) | |
tree | ba7830905a90ea08b2453d9c3206f01cf1a868bd | |
parent | e4da615a48ee94db1b73bf66fc1d7f94237d8bbb (diff) | |
download | skiboot-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>
-rw-r--r-- | core/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |