diff options
Diffstat (limited to 'post/board/lwmon5/dspic.c')
| -rw-r--r-- | post/board/lwmon5/dspic.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/post/board/lwmon5/dspic.c b/post/board/lwmon5/dspic.c index e8fed89ba..f1c9c153f 100644 --- a/post/board/lwmon5/dspic.c +++ b/post/board/lwmon5/dspic.c @@ -94,9 +94,9 @@ int dspic_post_test(int flags)  	}  	data = dspic_read(DSPIC_SYS_ERROR_REG); -	if (data != 0) ret = 1;  	if (data == -1) {  		post_log("dsPIC : failed read system error\n"); +		ret = 1;  	} else {  		post_log("dsPIC SYS-ERROR code: 0x%04X\n", data);  	} |