From: Yuri Tikhonov Date: Fri, 21 Mar 2008 08:18:40 +0000 (+0100) Subject: LWMON5: fix dsPIC POST X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=86aea3eaefa248ffb9328e2b50c64720489cdbeb;p=project%2Fbcm63xx%2Fu-boot.git LWMON5: fix dsPIC POST Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST. Signed-off-by: Yuri Tikhonov --- --- diff --git a/post/board/lwmon5/dspic.c b/post/board/lwmon5/dspic.c index 65b96bcc24..dbaa0746e6 100644 --- a/post/board/lwmon5/dspic.c +++ b/post/board/lwmon5/dspic.c @@ -97,8 +97,9 @@ int dspic_post_test(int flags) if (data == -1) { post_log("dsPIC : failed read system error\n"); ret = 1; - } else { + } else if (data != 0) { post_log("dsPIC SYS-ERROR code: 0x%04X\n", data); + ret = 1; } return ret;