diff options
author | wdenk <wdenk> | 2003-06-28 17:24:46 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-28 17:24:46 +0000 |
commit | d1cbe85b084ce543ba0b09def03a1b20940e6c03 (patch) | |
tree | 1cbfceb46952e902208d58595d163143d6038e8a /cpu/mpc8xx | |
parent | 8bde7f776c77b343aca29b8c7b58464d915ac245 (diff) | |
download | u-boot-imx-d1cbe85b084ce543ba0b09def03a1b20940e6c03.zip u-boot-imx-d1cbe85b084ce543ba0b09def03a1b20940e6c03.tar.gz u-boot-imx-d1cbe85b084ce543ba0b09def03a1b20940e6c03.tar.bz2 |
Merge from "stable branch", tag LABEL_2003_06_28_1800-stable:
- Allow to call sysmon function interactively
- PIC on LWMON board needs delay after power-on
- Add missing RSR definitions for MPC8xx
- Improve log buffer handling: guarantee clean reset after power-on
- Add support for EXBITGEN board
- Add support for SL8245 board
Diffstat (limited to 'cpu/mpc8xx')
-rw-r--r-- | cpu/mpc8xx/commproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mpc8xx/commproc.c b/cpu/mpc8xx/commproc.c index 62a4458..37c72a7 100644 --- a/cpu/mpc8xx/commproc.c +++ b/cpu/mpc8xx/commproc.c @@ -91,7 +91,7 @@ uint dpram_base_align (uint align) } #endif /* CFG_ALLOC_DPRAM */ -#ifdef CONFIG_POST +#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER) void post_word_store (ulong a) { @@ -109,4 +109,4 @@ ulong post_word_load (void) return *(volatile ulong *) save_addr; } -#endif /* CONFIG_POST */ +#endif /* CONFIG_POST || CONFIG_LOGBUFFER*/ |