diff options
author | wdenk <wdenk> | 2003-05-03 15:50:43 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-05-03 15:50:43 +0000 |
commit | 7aa78614716b7bd7bdf68553f261ad0d5a12826a (patch) | |
tree | 756a98d1deac76f1cfba3d8da18c19e7183618c8 /lib_ppc | |
parent | 4532cb696eb717419022dbaa8d408e7df7df7b68 (diff) |
* Add support for Promess ATC boardLABEL_2003_05_03_1700
* Patch by Keith Outwater, 28 Apr 2003:
- Miscellaneous corrections and additions to GEN860T board specific code.
- Added GEN860_SC variant to GEN860T.
- Miscellaneous corrections to GEN860T documentation.
- Correct duplicate entry in U-Boot CREDITS file.
- Add GEN860T_SC entry in MAINTAINERS file.
- Update CREDITS file with GEN860T_SC info.
* Update Smiths Aerospace addresses in MAINTAINERS file
* Fix error handling in hush's version of "run" command
Diffstat (limited to 'lib_ppc')
-rw-r--r-- | lib_ppc/board.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 4b1edeec0d2..923f70e9ef6 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -50,8 +50,10 @@ #include <cmd_bedbug.h> #endif #ifdef CFG_ALLOC_DPRAM +#if !defined(CONFIG_8260) #include <commproc.h> #endif +#endif #include <version.h> #if defined(CONFIG_BAB7xx) #include <w83c553f.h> @@ -277,8 +279,10 @@ init_fnc_t *init_sequence[] = { get_clocks, /* get CPU and bus clocks (etc.) */ init_timebase, #ifdef CFG_ALLOC_DPRAM +#if !defined(CONFIG_8260) dpram_init, #endif +#endif #if defined(CONFIG_BOARD_POSTCLK_INIT) board_postclk_init, #endif |