diff options
author | wdenk | 2002-12-08 09:53:23 +0000 |
---|---|---|
committer | wdenk | 2002-12-08 09:53:23 +0000 |
commit | 228f29ac6e0026e596b3a6fbb640118b9944cdd8 (patch) | |
tree | f379b80d2d4be7cf9f25bd59156e53cb00faaf72 /include/asm-ppc/global_data.h | |
parent | 7c7a23bd5a0bc149d2edd665ec46381726b24e0c (diff) |
* Improve log buffer code; use "loglevel" to decide which messages
to log on the console, too (like in Linux); get rid of "logstart"
Diffstat (limited to 'include/asm-ppc/global_data.h')
-rw-r--r-- | include/asm-ppc/global_data.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-ppc/global_data.h b/include/asm-ppc/global_data.h index 34701803ffe..c53061b5df5 100644 --- a/include/asm-ppc/global_data.h +++ b/include/asm-ppc/global_data.h @@ -68,6 +68,9 @@ typedef struct global_data { #if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) unsigned long fb_base; /* Base address of framebuffer memory */ #endif +#ifdef CONFIG_POST + unsigned long post_log_word; /* Record POST activities */ +#endif #ifdef CONFIG_BOARD_TYPES unsigned long board_type; #endif |