From patchwork Wed Sep 29 18:23:54 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjorn Helgaas X-Patchwork-Id: 217812 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o8TINQBI009602 for ; Wed, 29 Sep 2010 18:23:56 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754138Ab0I2SX4 (ORCPT ); Wed, 29 Sep 2010 14:23:56 -0400 Received: from g1t0029.austin.hp.com ([15.216.28.36]:22032 "EHLO g1t0029.austin.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753353Ab0I2SXz (ORCPT ); Wed, 29 Sep 2010 14:23:55 -0400 Received: from g1t0038.austin.hp.com (g1t0038.austin.hp.com [16.236.32.44]) by g1t0029.austin.hp.com (Postfix) with ESMTP id 3621138068; Wed, 29 Sep 2010 18:23:55 +0000 (UTC) Received: from ldl (ldl.fc.hp.com [15.11.146.30]) by g1t0038.austin.hp.com (Postfix) with ESMTP id CF69D301EC; Wed, 29 Sep 2010 18:23:54 +0000 (UTC) Received: from localhost (ldl.fc.hp.com [127.0.0.1]) by ldl (Postfix) with ESMTP id 81B96CF0023; Wed, 29 Sep 2010 12:23:54 -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 jUBwY1ajnOlq; Wed, 29 Sep 2010 12:23:54 -0600 (MDT) Received: from eh.fc.hp.com (eh.fc.hp.com [15.11.146.105]) by ldl (Postfix) with ESMTP id 6D1A7CF0014; Wed, 29 Sep 2010 12:23:54 -0600 (MDT) Received: from bob.kio (localhost [127.0.0.1]) by eh.fc.hp.com (Postfix) with ESMTP id 45B3926108; Wed, 29 Sep 2010 12:23:54 -0600 (MDT) Subject: [PATCH] PCI: fix message typo To: Jesse Barnes From: Bjorn Helgaas Cc: linux-pci@vger.kernel.org, Arnd Bergmann , Peter Maydell Date: Wed, 29 Sep 2010 12:23:54 -0600 Message-ID: <20100929182354.31046.56717.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 (demeter1.kernel.org [140.211.167.41]); Wed, 29 Sep 2010 18:23:56 +0000 (UTC) diff --git a/drivers/pci/setup-res.c b/drivers/pci/setup-res.c index 2aaa131..bc0e6ee 100644 --- a/drivers/pci/setup-res.c +++ b/drivers/pci/setup-res.c @@ -85,7 +85,7 @@ void pci_update_resource(struct pci_dev *dev, int resno) } } res->flags &= ~IORESOURCE_UNSET; - dev_info(&dev->dev, "BAR %d: set to %pR (PCI address [%#llx-%#llx]\n", + dev_info(&dev->dev, "BAR %d: set to %pR (PCI address [%#llx-%#llx])\n", resno, res, (unsigned long long)region.start, (unsigned long long)region.end); }