aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/xen-pcifront.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci/xen-pcifront.c')
-rw-r--r--drivers/pci/xen-pcifront.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/pci/xen-pcifront.c b/drivers/pci/xen-pcifront.c
index 98387caf59b..40109011092 100644
--- a/drivers/pci/xen-pcifront.c
+++ b/drivers/pci/xen-pcifront.c
@@ -189,7 +189,7 @@ static int pcifront_bus_read(struct pci_bus *bus, unsigned int devfn,
189 189
190 if (verbose_request) 190 if (verbose_request)
191 dev_info(&pdev->xdev->dev, 191 dev_info(&pdev->xdev->dev,
192 "read dev=%04x:%02x:%02x.%01x - offset %x size %d\n", 192 "read dev=%04x:%02x:%02x.%d - offset %x size %d\n",
193 pci_domain_nr(bus), bus->number, PCI_SLOT(devfn), 193 pci_domain_nr(bus), bus->number, PCI_SLOT(devfn),
194 PCI_FUNC(devfn), where, size); 194 PCI_FUNC(devfn), where, size);
195 195
@@ -228,7 +228,7 @@ static int pcifront_bus_write(struct pci_bus *bus, unsigned int devfn,
228 228
229 if (verbose_request) 229 if (verbose_request)
230 dev_info(&pdev->xdev->dev, 230 dev_info(&pdev->xdev->dev,
231 "write dev=%04x:%02x:%02x.%01x - " 231 "write dev=%04x:%02x:%02x.%d - "
232 "offset %x size %d val %x\n", 232 "offset %x size %d val %x\n",
233 pci_domain_nr(bus), bus->number, 233 pci_domain_nr(bus), bus->number,
234 PCI_SLOT(devfn), PCI_FUNC(devfn), where, size, val); 234 PCI_SLOT(devfn), PCI_FUNC(devfn), where, size, val);
@@ -432,7 +432,7 @@ static int __devinit pcifront_scan_bus(struct pcifront_device *pdev,
432 d = pci_scan_single_device(b, devfn); 432 d = pci_scan_single_device(b, devfn);
433 if (d) 433 if (d)
434 dev_info(&pdev->xdev->dev, "New device on " 434 dev_info(&pdev->xdev->dev, "New device on "
435 "%04x:%02x:%02x.%02x found.\n", domain, bus, 435 "%04x:%02x:%02x.%d found.\n", domain, bus,
436 PCI_SLOT(devfn), PCI_FUNC(devfn)); 436 PCI_SLOT(devfn), PCI_FUNC(devfn));
437 } 437 }
438 438
@@ -1040,7 +1040,7 @@ static int pcifront_detach_devices(struct pcifront_device *pdev)
1040 pci_dev = pci_get_slot(pci_bus, PCI_DEVFN(slot, func)); 1040 pci_dev = pci_get_slot(pci_bus, PCI_DEVFN(slot, func));
1041 if (!pci_dev) { 1041 if (!pci_dev) {
1042 dev_dbg(&pdev->xdev->dev, 1042 dev_dbg(&pdev->xdev->dev,
1043 "Cannot get PCI device %04x:%02x:%02x.%02x\n", 1043 "Cannot get PCI device %04x:%02x:%02x.%d\n",
1044 domain, bus, slot, func); 1044 domain, bus, slot, func);
1045 continue; 1045 continue;
1046 } 1046 }
@@ -1048,7 +1048,7 @@ static int pcifront_detach_devices(struct pcifront_device *pdev)
1048 pci_dev_put(pci_dev); 1048 pci_dev_put(pci_dev);
1049 1049
1050 dev_dbg(&pdev->xdev->dev, 1050 dev_dbg(&pdev->xdev->dev,
1051 "PCI device %04x:%02x:%02x.%02x removed.\n", 1051 "PCI device %04x:%02x:%02x.%d removed.\n",
1052 domain, bus, slot, func); 1052 domain, bus, slot, func);
1053 } 1053 }
1054 1054