Merge branch 'master' of /home/wd/git/u-boot/work

This commit is contained in:
Wolfgang Denk 2008-03-22 23:27:43 +01:00
commit 6887cb6817
1 changed files with 2 additions and 1 deletions

View File

@ -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;