summaryrefslogtreecommitdiffstats
path: root/board/amcc/makalu/makalu.c
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2009-10-02 14:35:16 +0200
committerStefan Roese <sr@denx.de>2009-10-07 09:13:46 +0200
commit06dfaeef52a5f773ae4292432e3c74ff52ead316 (patch)
tree90a3e2c700aabead7e4b637a4cd9572005f260fd /board/amcc/makalu/makalu.c
parent54f5f056aa1daa3e39bad1c5c3fb43a72cdb9e84 (diff)
downloadblackbird-obmc-uboot-06dfaeef52a5f773ae4292432e3c74ff52ead316.tar.gz
blackbird-obmc-uboot-06dfaeef52a5f773ae4292432e3c74ff52ead316.zip
ppc4xx: Fix msg "initialization as root-complex failed" upon PCIe scan
This message is printed upon PCIe bus scan, not only upon error, but also if no PCIe device is detected at all. Since this is not an error, let's remove this message in this case. We already have the message "link is not up." if there is no PCIe device present. Signed-off-by: Stefan Roese <sr@denx.de> Acked-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/amcc/makalu/makalu.c')
-rw-r--r--board/amcc/makalu/makalu.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/board/amcc/makalu/makalu.c b/board/amcc/makalu/makalu.c
index fb0e7b75eb..d4277dda99 100644
--- a/board/amcc/makalu/makalu.c
+++ b/board/amcc/makalu/makalu.c
@@ -29,6 +29,7 @@
#include <asm/gpio.h>
#include <asm/io.h>
#include <fdt_support.h>
+#include <asm/errno.h>
#if defined(CONFIG_PCI)
#include <pci.h>
@@ -273,6 +274,8 @@ void pcie_setup_hoses(int busno)
ret = ppc4xx_init_pcie_endport(i);
else
ret = ppc4xx_init_pcie_rootport(i);
+ if (ret == -ENODEV)
+ continue;
if (ret) {
printf("PCIE%d: initialization as %s failed\n", i,
is_end_point(i) ? "endpoint" : "root-complex");
OpenPOWER on IntegriCloud