diff options
author | Stefan Roese | 2007-11-05 07:43:05 +0100 |
---|---|---|
committer | Stefan Roese | 2007-11-05 07:43:05 +0100 |
commit | 654f38b3a387886996a5a75771fbfc29cb4f225e (patch) | |
tree | ae1d0855b45fe09c4e746fc07fe6d425a8ae2d1d /board/amcc/kilauea | |
parent | 3d6cb3b24add6415f86a0f013ea40f5639b90047 (diff) |
ppc4xx: Make output a little shorter on PCIe detection
Now not max 3 lines but 2 lines are printed per PCIe port.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc/kilauea')
-rw-r--r-- | board/amcc/kilauea/kilauea.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/board/amcc/kilauea/kilauea.c b/board/amcc/kilauea/kilauea.c index 77c0eb43641..0939b54931d 100644 --- a/board/amcc/kilauea/kilauea.c +++ b/board/amcc/kilauea/kilauea.c @@ -342,15 +342,13 @@ void pcie_setup_hoses(int busno) for (i = 0; i < board_pcie_count(); i++) { - if (is_end_point(i)) { - printf("PCIE%d: will be configured as endpoint\n", i); + if (is_end_point(i)) ret = ppc4xx_init_pcie_endport(i); - } else { - printf("PCIE%d: will be configured as root-complex\n", i); + else ret = ppc4xx_init_pcie_rootport(i); - } if (ret) { - printf("PCIE%d: initialization failed\n", i); + printf("PCIE%d: initialization as %s failed\n", i, + is_end_point(i) ? "endpoint" : "root-complex"); continue; } |