Skip to content
Snippets Groups Projects
Commit ed12a89d authored by Tuomas Tynkkynen's avatar Tuomas Tynkkynen Committed by Tom Rini
Browse files

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: default avatarTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 9792be7d
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ int pciauto_region_allocate(struct pci_region *res, pci_size_t size, ...@@ -37,7 +37,7 @@ int pciauto_region_allocate(struct pci_region *res, pci_size_t size,
pci_addr_t addr; pci_addr_t addr;
if (!res) { if (!res) {
debug("No resource"); debug("No resource\n");
goto error; goto error;
} }
...@@ -50,7 +50,7 @@ int pciauto_region_allocate(struct pci_region *res, pci_size_t size, ...@@ -50,7 +50,7 @@ int pciauto_region_allocate(struct pci_region *res, pci_size_t size,
res->bus_lower = addr + 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); (unsigned long long)res->bus_lower);
*bar = addr; *bar = addr;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment