summaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-09-08 17:52:48 -0600
committerSimon Glass <sjg@chromium.org>2015-10-21 07:46:25 -0600
commit3129ace48948043467439e848264a287d9cd5cce (patch)
treeb107d4cc95f5b5b5ed55916469c6427874a3e5d6 /drivers/pci
parent4d21455e09f950d543954c5113f379208f11988e (diff)
downloadblackbird-obmc-uboot-3129ace48948043467439e848264a287d9cd5cce.tar.gz
blackbird-obmc-uboot-3129ace48948043467439e848264a287d9cd5cce.zip
dm: pci: Correct a few debug() statements
One debug() statement is missing a newline. The other has a repeated word. Fix these. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/pci-uclass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c
index 43522d287d..87eee45c52 100644
--- a/drivers/pci/pci-uclass.c
+++ b/drivers/pci/pci-uclass.c
@@ -438,7 +438,7 @@ int dm_pci_hose_probe_bus(struct pci_controller *hose, pci_dev_t bdf)
ret = device_probe(bus);
if (ret) {
- debug("%s: Cannot probe bus bus %s: %d\n", __func__, bus->name,
+ debug("%s: Cannot probe bus %s: %d\n", __func__, bus->name,
ret);
return ret;
}
@@ -557,7 +557,7 @@ static int pci_find_and_bind_driver(struct udevice *parent,
ret = device_bind_driver(parent, drv, str, devp);
if (ret) {
- debug("%s: Failed to bind generic driver: %d", __func__, ret);
+ debug("%s: Failed to bind generic driver: %d\n", __func__, ret);
return ret;
}
debug("%s: No match found: bound generic driver instead\n", __func__);
OpenPOWER on IntegriCloud