PCI: change resource collision messages from KERN_ERR to KERN_INFO

We can often deal with PCI resource issues by moving devices around. In
that case, there's no point in alarming the user with messages like these.
There are many bug reports where the message itself is the only problem,
e.g., https://bugs.launchpad.net/ubuntu/+source/linux/+bug/413419 .

Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>

authored by Bjorn Helgaas and committed by Jesse Barnes f6d440da 9dda696f

+5 -5
+5 -5
drivers/pci/setup-res.c
··· 97 97 98 98 root = pci_find_parent_resource(dev, res); 99 99 if (!root) { 100 - dev_err(&dev->dev, "no compatible bridge window for %pR\n", 101 - res); 100 + dev_info(&dev->dev, "no compatible bridge window for %pR\n", 101 + res); 102 102 return -EINVAL; 103 103 } 104 104 105 105 conflict = request_resource_conflict(root, res); 106 106 if (conflict) { 107 - dev_err(&dev->dev, 108 - "address space collision: %pR conflicts with %s %pR\n", 109 - res, conflict->name, conflict); 107 + dev_info(&dev->dev, 108 + "address space collision: %pR conflicts with %s %pR\n", 109 + res, conflict->name, conflict); 110 110 return -EBUSY; 111 111 } 112 112