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 /lib_mips/board.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 'lib_mips/board.c')
| -rw-r--r-- | lib_mips/board.c | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/lib_mips/board.c b/lib_mips/board.c index 2bbf029d2..11e5011e7 100644 --- a/lib_mips/board.c +++ b/lib_mips/board.c @@ -212,7 +212,7 @@ void board_init_f(ulong bootflag)  #ifdef DEBUG  	printf ("Top of RAM usable for U-Boot at: %08lx\n", addr);  #endif -	  +  		/* Reserve memory for U-Boot code, data & bss  		 * round down to next 16 kB limit  		 */ @@ -304,7 +304,6 @@ void board_init_f(ulong bootflag)  void board_init_r (gd_t *id, ulong dest_addr)  {  	DECLARE_GLOBAL_DATA_PTR; -  	cmd_tbl_t *cmdtp;  	ulong size;  	extern void malloc_bin_reloc (void); @@ -329,7 +328,7 @@ void board_init_r (gd_t *id, ulong dest_addr)  	/*  	 * We have to relocate the command table manually  	 */ -	for (cmdtp = &cmd_tbl[0]; cmdtp->name; cmdtp++) { + 	for (cmdtp = &__u_boot_cmd_start; cmdtp !=  &__u_boot_cmd_end; cmdtp++) {  		ulong addr;  		addr = (ulong) (cmdtp->cmd) + gd->reloc_off; @@ -358,7 +357,7 @@ void board_init_r (gd_t *id, ulong dest_addr)  #ifndef CFG_ENV_IS_NOWHERE  	env_name_spec += gd->reloc_off;  #endif -	 +  	/* configure available FLASH banks */  	size = flash_init();  	display_flash_config (size); @@ -434,4 +433,3 @@ void hang (void)  	puts ("### ERROR ### Please RESET the board ###\n");  	for (;;);  } - |