diff options
author | Joe Perches <joe@perches.com> | 2007-11-20 01:48:29 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-02-01 23:04:22 (GMT) |
commit | a6f29a98af278a8d784a870ae9f08e530de73ffe (patch) | |
tree | 61886853d2ac0223bc61be64879b5703458f2760 /drivers/pci/probe.c | |
parent | 94688cf2454986309fbcd495233ba2423786a14a (diff) | |
download | linux-fsl-qoriq-a6f29a98af278a8d784a870ae9f08e530de73ffe.tar.xz |
PCI: Add missing "space" in printk messages
Signed-off-by: Joe Perches <joe@perches.com>
Cc: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/probe.c')
-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 93c7f35..4262dfe 100644 --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c @@ -639,13 +639,13 @@ int pci_scan_bridge(struct pci_bus *bus, struct pci_dev * dev, int max, int pass (child->number > bus->subordinate) || (child->number < bus->number) || (child->subordinate < bus->number)) { - pr_debug("PCI: Bus #%02x (-#%02x) is %s" + pr_debug("PCI: Bus #%02x (-#%02x) is %s " "hidden behind%s bridge #%02x (-#%02x)\n", child->number, child->subordinate, (bus->number > child->subordinate && bus->subordinate < child->number) ? - "wholly " : " partially", - bus->self->transparent ? " transparent" : " ", + "wholly" : "partially", + bus->self->transparent ? " transparent" : "", bus->number, bus->subordinate); } bus = bus->parent; |