mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
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>
This commit is contained in:
parent
4d21455e09
commit
3129ace489
1 changed files with 2 additions and 2 deletions
|
@ -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__);
|
||||
|
|
Loading…
Reference in a new issue