diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-03-09 15:35:53 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-03-09 15:35:53 -0500 |
commit | 263a5c8e16c34199ddf6de3f102e789ffa3ee26e (patch) | |
tree | 4f049e339d522b2ab0ba3bed3ec217e4bbc83d35 /drivers/pci/xen-pcifront.c | |
parent | 54d20f006ceff1f2f1e69d0e54049b6c0765c039 (diff) | |
parent | 192cfd58774b4d17b2fe8bdc77d89c2ef4e0591d (diff) |
Merge 3.3-rc6 into driver-core-next
This was done to resolve a conflict in the drivers/base/cpu.c file.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/pci/xen-pcifront.c')
-rw-r--r-- | drivers/pci/xen-pcifront.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/pci/xen-pcifront.c b/drivers/pci/xen-pcifront.c index 98387caf59b3..401090110922 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 | ||