diff mbox

powerpc/pci: Quieten unset I/O resource warning

Message ID 20141014114026.1d340c1c@kryten (mailing list archive)
State Accepted
Commit adb7cd732292b06ee964d9f6090b17c70bd8bd3d
Headers show

Commit Message

Anton Blanchard Oct. 14, 2014, 12:40 a.m. UTC
Newer POWER designs do not implement PCI I/O space, so we
expect to see a number of these.

Reduce the severity of the warning so it doesn't mask other
real issues.

Signed-off-by: Anton Blanchard <anton@samba.org>
---
diff mbox

Patch

Index: b/arch/powerpc/kernel/pci-common.c
===================================================================
--- a/arch/powerpc/kernel/pci-common.c
+++ b/arch/powerpc/kernel/pci-common.c
@@ -1460,7 +1460,7 @@  static void pcibios_setup_phb_resources(
 	res = &hose->io_resource;
 
 	if (!res->flags) {
-		printk(KERN_WARNING "PCI: I/O resource not set for host"
+		pr_info("PCI: I/O resource not set for host"
 		       " bridge %s (domain %d)\n",
 		       hose->dn->full_name, hose->global_number);
 	} else {