diff options
author | wdenk <wdenk> | 2003-06-28 09:10:42 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-28 09:10:42 +0000 |
commit | ed579b4210cc5341d511e090239ca697e91ad728 (patch) | |
tree | 1249184e597d6af9858536fa04e651e81dd62b5c /cpu | |
parent | ef0630617e0f52dabb2cf7073df281e680073ec1 (diff) |
* Allow to call sysmon function interactivelyLABEL_2003_06_28_1800-stable
* 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
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc8260/commproc.c | 4 | ||||
-rw-r--r-- | cpu/mpc8xx/commproc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cpu/mpc8260/commproc.c b/cpu/mpc8260/commproc.c index dcbffc4412a..c523ee4dca7 100644 --- a/cpu/mpc8260/commproc.c +++ b/cpu/mpc8260/commproc.c @@ -188,7 +188,7 @@ m8260_cpm_extcbrg(uint brg, uint rate, uint extclk, int pinsel) *bp |= CPM_BRG_EXTC_CLK5_15; } -#ifdef CONFIG_POST +#if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER) void post_word_store (ulong a) { @@ -206,4 +206,4 @@ ulong post_word_load (void) return *save_addr; } -#endif /* CONFIG_POST */ +#endif /* CONFIG_POST || CONFIG_LOGBUFFER*/ diff --git a/cpu/mpc8xx/commproc.c b/cpu/mpc8xx/commproc.c index 62a4458a5ea..37c72a7273e 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*/ |