diff options
author | Anton Blanchard <anton@samba.org> | 2014-11-02 16:18:06 -0500 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2014-11-09 17:59:33 -0500 |
commit | 7aa189c8f57f2141b8655c2a13c7486d0844d490 (patch) | |
tree | 739aa4094c5bcf13548408e9a3f9b3381f152355 | |
parent | ecaf5fa0a5096a237482ddc4b3c46becf531db1b (diff) |
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>
-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) | |||
134 | of_node_put(pdn); | 134 | of_node_put(pdn); |
135 | 135 | ||
136 | if (rc) { | 136 | if (rc) { |
137 | pr_err("no ibm,pcie-link-speed-stats property\n"); | 137 | pr_debug("no ibm,pcie-link-speed-stats property\n"); |
138 | return 0; | 138 | return 0; |
139 | } | 139 | } |
140 | 140 | ||