From patchwork Thu Jun 3 19:47:18 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjorn Helgaas X-Patchwork-Id: 104165 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o53JlLcQ019103 for ; Thu, 3 Jun 2010 19:47:22 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755969Ab0FCTrV (ORCPT ); Thu, 3 Jun 2010 15:47:21 -0400 Received: from g1t0027.austin.hp.com ([15.216.28.34]:41499 "EHLO g1t0027.austin.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755146Ab0FCTrU (ORCPT ); Thu, 3 Jun 2010 15:47:20 -0400 Received: from g1t0039.austin.hp.com (g1t0039.austin.hp.com [16.236.32.45]) by g1t0027.austin.hp.com (Postfix) with ESMTP id F0520381DE; Thu, 3 Jun 2010 19:47:19 +0000 (UTC) Received: from ldl (ldl.fc.hp.com [15.11.146.30]) by g1t0039.austin.hp.com (Postfix) with ESMTP id 7AFBD34237; Thu, 3 Jun 2010 19:47:19 +0000 (UTC) Received: from localhost (ldl.fc.hp.com [127.0.0.1]) by ldl (Postfix) with ESMTP id 43983CF007F; Thu, 3 Jun 2010 13:47:19 -0600 (MDT) Received: from ldl ([127.0.0.1]) by localhost (ldl.fc.hp.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id o2TsZ6yH2yEO; Thu, 3 Jun 2010 13:47:19 -0600 (MDT) Received: from eh.fc.hp.com (eh.fc.hp.com [15.11.146.105]) by ldl (Postfix) with ESMTP id 2C3C3CF0022; Thu, 3 Jun 2010 13:47:19 -0600 (MDT) Received: from bob.kio (localhost [127.0.0.1]) by eh.fc.hp.com (Postfix) with ESMTP id ED7A02617D; Thu, 3 Jun 2010 13:47:18 -0600 (MDT) Subject: [PATCH] PCI: change resource collision messages from KERN_ERR to KERN_INFO To: Jesse Barnes From: Bjorn Helgaas Cc: linux-pci@vger.kernel.org, "David H. Lynch Jr." Date: Thu, 03 Jun 2010 13:47:18 -0600 Message-ID: <20100603194718.7185.49528.stgit@bob.kio> User-Agent: StGit/0.15 MIME-Version: 1.0 Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 03 Jun 2010 19:47:22 +0000 (UTC) diff --git a/drivers/pci/setup-res.c b/drivers/pci/setup-res.c index 17bed18..92379e2 100644 --- a/drivers/pci/setup-res.c +++ b/drivers/pci/setup-res.c @@ -97,16 +97,16 @@ int pci_claim_resource(struct pci_dev *dev, int resource) root = pci_find_parent_resource(dev, res); if (!root) { - dev_err(&dev->dev, "no compatible bridge window for %pR\n", - res); + dev_info(&dev->dev, "no compatible bridge window for %pR\n", + res); return -EINVAL; } conflict = request_resource_conflict(root, res); if (conflict) { - dev_err(&dev->dev, - "address space collision: %pR conflicts with %s %pR\n", - res, conflict->name, conflict); + dev_info(&dev->dev, + "address space collision: %pR conflicts with %s %pR\n", + res, conflict->name, conflict); return -EBUSY; }