diff options
author | Anton Blanchard <anton@samba.org> | 2014-11-02 22:18:06 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2014-11-09 23:59:33 +0100 |
commit | 7aa189c8f57f2141b8655c2a13c7486d0844d490 (patch) | |
tree | 739aa4094c5bcf13548408e9a3f9b3381f152355 /arch/powerpc/platforms/pseries/pci.c | |
parent | powerpc: LLVM complains about forward declaration of struct rtas_sensors (diff) | |
download | linux-7aa189c8f57f2141b8655c2a13c7486d0844d490.tar.xz linux-7aa189c8f57f2141b8655c2a13c7486d0844d490.zip |
powerpc/pseries: Quieten ibm,pcie-link-speed-stats warning
The ibm,pcie-link-speed-stats isn't mandatory, so we shouldn't print
a high priority error message when missing. One example where we see
this is QEMU.
Reduce it to pr_debug.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/platforms/pseries/pci.c')
-rw-r--r-- | arch/powerpc/platforms/pseries/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/pci.c b/arch/powerpc/platforms/pseries/pci.c index 67e48594040c..fe16a50700de 100644 --- a/arch/powerpc/platforms/pseries/pci.c +++ b/arch/powerpc/platforms/pseries/pci.c @@ -134,7 +134,7 @@ int pseries_root_bridge_prepare(struct pci_host_bridge *bridge) of_node_put(pdn); if (rc) { - pr_err("no ibm,pcie-link-speed-stats property\n"); + pr_debug("no ibm,pcie-link-speed-stats property\n"); return 0; } |