mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
pci: tegra: Update error prints with new lines
Add new lines to make errorr messages easier to read. Signed-off-by: Peter Robinson <pbrobinson@gmail.com> Signed-off-by: Tom Warren <twarren@nvidia.com>
This commit is contained in:
parent
5b060e465e
commit
b5cf255f73
1 changed files with 2 additions and 2 deletions
|
@ -455,7 +455,7 @@ static int tegra_pcie_parse_port_info(ofnode node, uint *index, uint *lanes)
|
|||
|
||||
err = ofnode_read_u32_default(node, "nvidia,num-lanes", -1);
|
||||
if (err < 0) {
|
||||
pr_err("failed to parse \"nvidia,num-lanes\" property");
|
||||
pr_err("failed to parse \"nvidia,num-lanes\" property\n");
|
||||
return err;
|
||||
}
|
||||
|
||||
|
@ -463,7 +463,7 @@ static int tegra_pcie_parse_port_info(ofnode node, uint *index, uint *lanes)
|
|||
|
||||
err = ofnode_read_pci_addr(node, 0, "reg", &addr);
|
||||
if (err < 0) {
|
||||
pr_err("failed to parse \"reg\" property");
|
||||
pr_err("failed to parse \"reg\" property\n");
|
||||
return err;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue