mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
PCI: Add newlines to debug prints in pci_auto_common.c
All of the debug output from this file is squished to one line. Fix it. Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
9792be7d93
commit
ed12a89d07
1 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ int pciauto_region_allocate(struct pci_region *res, pci_size_t size,
|
|||
pci_addr_t addr;
|
||||
|
||||
if (!res) {
|
||||
debug("No resource");
|
||||
debug("No resource\n");
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
@ -50,7 +50,7 @@ int pciauto_region_allocate(struct pci_region *res, pci_size_t size,
|
|||
|
||||
res->bus_lower = addr + size;
|
||||
|
||||
debug("address=0x%llx bus_lower=0x%llx", (unsigned long long)addr,
|
||||
debug("address=0x%llx bus_lower=0x%llx\n", (unsigned long long)addr,
|
||||
(unsigned long long)res->bus_lower);
|
||||
|
||||
*bar = addr;
|
||||
|
|
Loading…
Add table
Reference in a new issue