From patchwork Mon Mar 22 22:34:10 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjorn Helgaas X-Patchwork-Id: 87523 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 o2MMYCIk020694 for ; Mon, 22 Mar 2010 22:34:12 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755617Ab0CVWeL (ORCPT ); Mon, 22 Mar 2010 18:34:11 -0400 Received: from g4t0015.houston.hp.com ([15.201.24.18]:10701 "EHLO g4t0015.houston.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755051Ab0CVWeK (ORCPT ); Mon, 22 Mar 2010 18:34:10 -0400 Received: from g4t0009.houston.hp.com (g4t0009.houston.hp.com [16.234.32.26]) by g4t0015.houston.hp.com (Postfix) with ESMTP id A33D3802B; Mon, 22 Mar 2010 22:34:10 +0000 (UTC) Received: from ldl (ldl.fc.hp.com [15.11.146.30]) by g4t0009.houston.hp.com (Postfix) with ESMTP id 8BAFFC0CE; Mon, 22 Mar 2010 22:34:10 +0000 (UTC) Received: from localhost (ldl.fc.hp.com [127.0.0.1]) by ldl (Postfix) with ESMTP id 747ECCF0028; Mon, 22 Mar 2010 16:34:10 -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 lJ4wv4yvU5Eg; Mon, 22 Mar 2010 16:34:10 -0600 (MDT) Received: from eh.fc.hp.com (eh.fc.hp.com [15.11.146.105]) by ldl (Postfix) with ESMTP id 5FF6FCF0021; Mon, 22 Mar 2010 16:34:10 -0600 (MDT) Received: from bob.kio (localhost [127.0.0.1]) by eh.fc.hp.com (Postfix) with ESMTP id 4BC9B262A3; Mon, 22 Mar 2010 16:34:10 -0600 (MDT) Subject: [PATCH 2/3] x86/PCI: remove redundant warnings To: Jesse Barnes From: Bjorn Helgaas Cc: David Howells , linux-pci@vger.kernel.org Date: Mon, 22 Mar 2010 16:34:10 -0600 Message-ID: <20100322223410.11979.57251.stgit@bob.kio> In-Reply-To: <20100322223405.11979.49633.stgit@bob.kio> References: <20100322223405.11979.49633.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]); Mon, 22 Mar 2010 22:34:12 +0000 (UTC) diff --git a/arch/x86/pci/i386.c b/arch/x86/pci/i386.c index dece3eb..46fd43f 100644 --- a/arch/x86/pci/i386.c +++ b/arch/x86/pci/i386.c @@ -127,9 +127,6 @@ static void __init pcibios_allocate_bus_resources(struct list_head *bus_list) continue; if (!r->start || pci_claim_resource(dev, idx) < 0) { - dev_info(&dev->dev, - "can't reserve window %pR\n", - r); /* * Something is wrong with the region. * Invalidate the resource to prevent @@ -181,8 +178,6 @@ static void __init pcibios_allocate_resources(int pass) "BAR %d: reserving %pr (d=%d, p=%d)\n", idx, r, disabled, pass); if (pci_claim_resource(dev, idx) < 0) { - dev_info(&dev->dev, - "can't reserve %pR\n", r); /* We'll assign a new address later */ r->end -= r->start; r->start = 0;