diff options
| author | wdenk <wdenk> | 2003-06-27 21:31:46 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2003-06-27 21:31:46 +0000 | 
| commit | 8bde7f776c77b343aca29b8c7b58464d915ac245 (patch) | |
| tree | 20f1fd99975215e7c658454a15cdb4ed4694e2d4 /cpu/mpc5xx/cpu_init.c | |
| parent | 993cad9364c6b87ae429d1ed1130d8153f6f027e (diff) | |
| download | olio-uboot-2014.01-8bde7f776c77b343aca29b8c7b58464d915ac245.tar.xz olio-uboot-2014.01-8bde7f776c77b343aca29b8c7b58464d915ac245.zip | |
* Code cleanup:LABEL_2003_06_27_2340
  - remove trailing white space, trailing empty lines, C++ comments, etc.
  - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
* Patches by Kenneth Johansson, 25 Jun 2003:
  - major rework of command structure
    (work done mostly by Michal Cendrowski and Joakim Kristiansen)
Diffstat (limited to 'cpu/mpc5xx/cpu_init.c')
| -rw-r--r-- | cpu/mpc5xx/cpu_init.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/cpu/mpc5xx/cpu_init.c b/cpu/mpc5xx/cpu_init.c index 27cf3d6b1..e19d0f49b 100644 --- a/cpu/mpc5xx/cpu_init.c +++ b/cpu/mpc5xx/cpu_init.c @@ -16,12 +16,12 @@   *   * You should have received a copy of the GNU General Public License   * along with this program; if not, write to the Free Software - * Foundation,  + * Foundation,   */  /*   * File:		cpu_init.c - *  + *   * Discription:		Contains initialisation functions to setup   *    			the cpu properly   * @@ -32,7 +32,7 @@  #include <watchdog.h>  /* - * Setup essential cpu registers to run  + * Setup essential cpu registers to run   */  void cpu_init_f (volatile immap_t * immr)  { @@ -45,7 +45,7 @@ void cpu_init_f (volatile immap_t * immr)  #if defined(CONFIG_WATCHDOG)  	reset_5xx_watchdog (immr); -#endif  +#endif  	/* SIUMCR - contains debug pin configuration */  	immr->im_siu_conf.sc_siumcr |= CFG_SIUMCR; @@ -56,10 +56,10 @@ void cpu_init_f (volatile immap_t * immr)  	/* Full IMB bus speed */  	immr->im_uimb.uimb_umcr = CFG_UMCR; -	 +  	/* Time base and decrementer will be enables (TBE) */  	/* in init_timebase() in time.c called from board_init_f(). */ -  +  	/* Initialize the PIT. Unlock PISCRK */  	immr->im_sitk.sitk_piscrk = KAPWR_KEY;  	immr->im_sit.sit_piscr = CFG_PISCR; |