From: Benjamin Herrenschmidt <benh@kernel.crashing.org> Date: 2016-06-22 07:23:15
If a PHB has no I/O space, there's no need to make it look like
something bad happened, a pr_debug() is plenty enough since this
is the case of all our modern POWER chips.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
arch/powerpc/kernel/pci-common.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
@@ -1487,9 +1487,9 @@ static void pcibios_setup_phb_resources(struct pci_controller *hose,res=&hose->io_resource;if(!res->flags){-pr_info("PCI: I/O resource not set for host"-" bridge %s (domain %d)\n",-hose->dn->full_name,hose->global_number);+pr_debug("PCI: I/O resource not set for host"+" bridge %s (domain %d)\n",+hose->dn->full_name,hose->global_number);}else{offset=pcibios_io_space_offset(hose);
On Wed, Jun 22, 2016 at 05:23:07PM +1000, Benjamin Herrenschmidt wrote:
If a PHB has no I/O space, there's no need to make it look like
something bad happened, a pr_debug() is plenty enough since this
is the case of all our modern POWER chips.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
From: Michael Ellerman <mpe@ellerman.id.au> Date: 2016-06-28 12:10:13
On Wed, 2016-22-06 at 07:23:07 UTC, Benjamin Herrenschmidt wrote:
If a PHB has no I/O space, there's no need to make it look like
something bad happened, a pr_debug() is plenty enough since this
is the case of all our modern POWER chips.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>