From: Bjorn Helgaas Date: Wed, 29 Sep 2010 18:23:54 +0000 (-0600) Subject: PCI: fix message typo X-Git-Tag: v2.6.37-rc1~62^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1bcd495be9ed3194f618e8af0446459dc52a1423;p=thirdparty%2Fkernel%2Flinux.git PCI: fix message typo I missed the closing parenthesis on "(PCI address ...)". Acked-by: Arnd Bergmann Reported-by: Peter Maydell Signed-off-by: Bjorn Helgaas Signed-off-by: Jesse Barnes --- diff --git a/drivers/pci/setup-res.c b/drivers/pci/setup-res.c index 2aaa13150de3b..bc0e6eea0fff6 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); }