diff options
| author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2010-03-16 17:53:03 -0400 |
|---|---|---|
| committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-03-24 16:21:35 -0400 |
| commit | 7b8ff6da028232aadae6bcc7c7406c8966d0b3c4 (patch) | |
| tree | c0bab7d872f6e8907d6bdf473f7fbedcfaf83081 | |
| parent | 99ddd552fef7e6e3b7dc76ba8fee9ea5869d1e14 (diff) | |
PCI: make disabled window printk style match the enabled ones
No functional change; this just tweaks the changes from 349e1823a405
so the new printks for disabled PCI-to-PCI bridge windows match the
ones for the enabled windows.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
CC: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
| -rw-r--r-- | drivers/pci/probe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c index 7feacf521e14..c82548afcd5c 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c | |||
| @@ -312,7 +312,7 @@ static void __devinit pci_read_bridge_io(struct pci_bus *child) | |||
| 312 | dev_printk(KERN_DEBUG, &dev->dev, " bridge window %pR\n", res); | 312 | dev_printk(KERN_DEBUG, &dev->dev, " bridge window %pR\n", res); |
| 313 | } else { | 313 | } else { |
| 314 | dev_printk(KERN_DEBUG, &dev->dev, | 314 | dev_printk(KERN_DEBUG, &dev->dev, |
| 315 | " bridge window [io %04lx - %04lx] reg reading\n", | 315 | " bridge window [io %#06lx-%#06lx] (disabled)\n", |
| 316 | base, limit); | 316 | base, limit); |
| 317 | } | 317 | } |
| 318 | } | 318 | } |
| @@ -336,7 +336,7 @@ static void __devinit pci_read_bridge_mmio(struct pci_bus *child) | |||
| 336 | dev_printk(KERN_DEBUG, &dev->dev, " bridge window %pR\n", res); | 336 | dev_printk(KERN_DEBUG, &dev->dev, " bridge window %pR\n", res); |
| 337 | } else { | 337 | } else { |
| 338 | dev_printk(KERN_DEBUG, &dev->dev, | 338 | dev_printk(KERN_DEBUG, &dev->dev, |
| 339 | " bridge window [mem 0x%08lx - 0x%08lx] reg reading\n", | 339 | " bridge window [mem %#010lx-%#010lx] (disabled)\n", |
| 340 | base, limit + 0xfffff); | 340 | base, limit + 0xfffff); |
| 341 | } | 341 | } |
| 342 | } | 342 | } |
| @@ -387,7 +387,7 @@ static void __devinit pci_read_bridge_mmio_pref(struct pci_bus *child) | |||
| 387 | dev_printk(KERN_DEBUG, &dev->dev, " bridge window %pR\n", res); | 387 | dev_printk(KERN_DEBUG, &dev->dev, " bridge window %pR\n", res); |
| 388 | } else { | 388 | } else { |
| 389 | dev_printk(KERN_DEBUG, &dev->dev, | 389 | dev_printk(KERN_DEBUG, &dev->dev, |
| 390 | " bridge window [mem 0x%08lx - %08lx pref] reg reading\n", | 390 | " bridge window [mem %#010lx-%#010lx pref] (disabled)\n", |
| 391 | base, limit + 0xfffff); | 391 | base, limit + 0xfffff); |
| 392 | } | 392 | } |
| 393 | } | 393 | } |
