diff mbox

[U-Boot,1/8] tegra: Report errors from PCI init

Message ID 1453067522-610-2-git-send-email-sjg@chromium.org
State Accepted
Commit dfa71e9fcbb142d3cf253054f83e4a4b4ea63f94
Delegated to: Joe Hershberger
Headers show

Commit Message

Simon Glass Jan. 17, 2016, 9:51 p.m. UTC
This function can fail, so be sure to report any errors that occur.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 drivers/pci/pci_tegra.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

Comments

Joe Hershberger Jan. 22, 2016, 10:16 p.m. UTC | #1
Hi Simon,

On Sun, Jan 17, 2016 at 3:51 PM, Simon Glass <sjg@chromium.org> wrote:
> This function can fail, so be sure to report any errors that occur.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>

Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
Joe Hershberger Jan. 29, 2016, 9:27 p.m. UTC | #2
Hi Simon,

https://patchwork.ozlabs.org/patch/569318/ was applied to u-boot-net.git.

Thanks!
-Joe
diff mbox

Patch

diff --git a/drivers/pci/pci_tegra.c b/drivers/pci/pci_tegra.c
index 5a7fefe..5dadf6f 100644
--- a/drivers/pci/pci_tegra.c
+++ b/drivers/pci/pci_tegra.c
@@ -465,7 +465,11 @@  static int tegra_pcie_parse_dt(const void *fdt, int node, enum tegra_pci_id id,
 		return err;
 	}
 
-	tegra_pcie_board_init();
+	err = tegra_pcie_board_init();
+	if (err < 0) {
+		error("tegra_pcie_board_init() failed: err=%d", err);
+		return err;
+	}
 
 	pcie->phy = tegra_xusb_phy_get(TEGRA_XUSB_PADCTL_PCIE);
 	if (pcie->phy) {