diff options
| author | Wolfgang Denk <wd@denx.de> | 2008-05-20 16:00:29 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-05-21 00:14:08 +0200 | 
| commit | 53677ef18e25c97ac613349087c5cb33ae5a2741 (patch) | |
| tree | f947d34d6efaee2401ea0e4c6104ef2f6a0f7ad0 /board/gen860t/flash.c | |
| parent | 727f63334676e760877d43bfb8f0e9331ac8b101 (diff) | |
| download | olio-uboot-2014.01-53677ef18e25c97ac613349087c5cb33ae5a2741.tar.xz olio-uboot-2014.01-53677ef18e25c97ac613349087c5cb33ae5a2741.zip | |
Big white-space cleanup.
This commit gets rid of a huge amount of silly white-space issues.
Especially, all sequences of SPACEs followed by TAB characters get
removed (unless they appear in print statements).
Also remove all embedded "vim:" and "vi:" statements which hide
indentation problems.
Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/gen860t/flash.c')
| -rw-r--r-- | board/gen860t/flash.c | 22 | 
1 files changed, 11 insertions, 11 deletions
| diff --git a/board/gen860t/flash.c b/board/gen860t/flash.c index ec32d07db..13faaf39f 100644 --- a/board/gen860t/flash.c +++ b/board/gen860t/flash.c @@ -156,9 +156,9 @@ flash_init (void)  	 * Monitor protection is ON by default  	 */  	flash_protect(FLAG_PROTECT_SET, -		      	  CFG_MONITOR_BASE, -		      	  CFG_MONITOR_BASE + monitor_flash_len - 1, -		      	  &flash_info[0]); +			  CFG_MONITOR_BASE, +			  CFG_MONITOR_BASE + monitor_flash_len - 1, +			  &flash_info[0]);  #endif  #ifdef	CFG_ENV_IS_IN_FLASH @@ -166,9 +166,9 @@ flash_init (void)  	 * Environment protection ON by default  	 */  	flash_protect(FLAG_PROTECT_SET, -		      	  CFG_ENV_ADDR, -		      	  CFG_ENV_ADDR + CFG_ENV_SECT_SIZE - 1, -		      	  &flash_info[0]); +			  CFG_ENV_ADDR, +			  CFG_ENV_ADDR + CFG_ENV_SECT_SIZE - 1, +			  &flash_info[0]);  #endif  	PRINTF("## Final Flash bank size: 0x%08lx\n",size_b0); @@ -190,14 +190,14 @@ flash_get_offsets (ulong base, flash_info_t *info)  	switch (info->flash_id & FLASH_VENDMASK) {  		case FLASH_MAN_INTEL: -	    	for (i = 0; i < info->sector_count; i++) { +		for (i = 0; i < info->sector_count; i++) {  				info->start[i] = base;  				base += 1024 * 128; -	    	} -	    	return; +		} +		return;  		default: -	   		printf ("Don't know sector offsets for FLASH" +			printf ("Don't know sector offsets for FLASH"  			        " type 0x%lx\n", info->flash_id);  	    return;  	} @@ -436,7 +436,7 @@ write_flash_buffer8(flash_info_t *info_p, vu_char *src_p, vu_char *dest_p,  	 * We assume that the block does not cross a boundary (we'll check before  	 * calling this function).  	 */ - 	for (i = 0; i < info_p->sector_count; ++i) { +	for (i = 0; i < info_p->sector_count; ++i) {  		if ( ((ulong)dest_p >= info_p->start[i]) &&  		    ((ulong)dest_p < (info_p->start[i] + blocksize)) ) {  			PRINTF("%s:%d: Dest addr 0x%p is in block %d @ 0x%.8lx\n", |