Commit 1bcd495be9ed3194f618e8af0446459dc52a1423
Committed by
Jesse Barnes
1 parent
2c6413aee2
Exists in
master
and in
39 other branches
PCI: fix message typo
I missed the closing parenthesis on "(PCI address ...)". Acked-by: Arnd Bergmann <arnd@arndb.de> Reported-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
drivers/pci/setup-res.c
... | ... | @@ -85,7 +85,7 @@ |
85 | 85 | } |
86 | 86 | } |
87 | 87 | res->flags &= ~IORESOURCE_UNSET; |
88 | - dev_info(&dev->dev, "BAR %d: set to %pR (PCI address [%#llx-%#llx]\n", | |
88 | + dev_info(&dev->dev, "BAR %d: set to %pR (PCI address [%#llx-%#llx])\n", | |
89 | 89 | resno, res, (unsigned long long)region.start, |
90 | 90 | (unsigned long long)region.end); |
91 | 91 | } |