diff options
author | Yuri Tikhonov <yur@emcraft.com> | 2008-05-08 15:46:42 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-05-20 23:24:38 +0200 |
commit | 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b (patch) | |
tree | a203ef1a6a8f74987d0b975f5f06e69734dab8bf /include/logbuff.h | |
parent | 7845d49094c81321021b50a4dbb8864d2f3777e4 (diff) | |
download | u-boot-imx-0e15ddd11f1a84c465e434eb051d2ef08ef02b9b.zip u-boot-imx-0e15ddd11f1a84c465e434eb051d2ef08ef02b9b.tar.gz u-boot-imx-0e15ddd11f1a84c465e434eb051d2ef08ef02b9b.tar.bz2 |
POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
This way we become able to utilize the full post_log_word for POST
activities (overwise, POST ECC, which has 0x8000 ID, could be
erroneously treated as started in post_output_backlog() even if there
was actually no POST ECC run (because of OCM POST failure, for
example).
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
Diffstat (limited to 'include/logbuff.h')
-rw-r--r-- | include/logbuff.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/logbuff.h b/include/logbuff.h index d415729..d06d208 100644 --- a/include/logbuff.h +++ b/include/logbuff.h @@ -31,8 +31,6 @@ #define LOGBUFF_OVERHEAD (4096) /* Logbuffer overhead for extra info */ #define LOGBUFF_RESERVE (LOGBUFF_LEN+LOGBUFF_OVERHEAD) -#define LOGBUFF_INITIALIZED (1<<31) - /* The mapping used here has to be the same as in setup_ext_logbuff () in linux/kernel/printk */ |