From joe@perches.com Mon Nov 26 21:48:21 2007 From: Joe Perches Date: Mon, 19 Nov 2007 17:48:29 -0800 Subject: PCI: Add missing "space" in printk messages To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , Kristen Carlson Accardi , linux-kernel@vger.kernel.org, linux-pci@atrey.karlin.mff.cuni.cz Message-ID: <1195523331-15303-38-git-send-email-joe@perches.com> Message-ID: Signed-off-by: Joe Perches Cc: Kristen Carlson Accardi Signed-off-by: Greg Kroah-Hartman --- drivers/pci/hotplug/pci_hotplug_core.c | 2 +- drivers/pci/probe.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) --- a/drivers/pci/hotplug/pci_hotplug_core.c +++ b/drivers/pci/hotplug/pci_hotplug_core.c @@ -625,7 +625,7 @@ int pci_hp_register (struct hotplug_slot if ((slot->info == NULL) || (slot->ops == NULL)) return -EINVAL; if (slot->release == NULL) { - dbg("Why are you trying to register a hotplug slot" + dbg("Why are you trying to register a hotplug slot " "without a proper release function?\n"); return -EINVAL; } --- a/drivers/pci/probe.c +++ b/drivers/pci/probe.c @@ -639,13 +639,13 @@ int pci_scan_bridge(struct pci_bus *bus, (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;