PCI: correct resource number in debug output

If pci_request_region fails, make the warning include the resource number,
not the resource number + 1.
This commit is contained in:
Jesse Barnes 2008-06-25 16:12:25 -07:00 committed by Jesse Barnes
parent 34438ba602
commit e4ec7a00ed
1 changed files with 4 additions and 4 deletions

View File

@ -1114,10 +1114,10 @@ int pci_request_region(struct pci_dev *pdev, int bar, const char *res_name)
err_out:
dev_warn(&pdev->dev, "BAR %d: can't reserve %s region [%#llx-%#llx]\n",
bar + 1, /* PCI BAR # */
pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
(unsigned long long)pci_resource_start(pdev, bar),
(unsigned long long)pci_resource_end(pdev, bar));
bar,
pci_resource_flags(pdev, bar) & IORESOURCE_IO ? "I/O" : "mem",
(unsigned long long)pci_resource_start(pdev, bar),
(unsigned long long)pci_resource_end(pdev, bar));
return -EBUSY;
}