diff options
| author | wdenk <wdenk> | 2004-12-16 21:44:03 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2004-12-16 21:44:03 +0000 | 
| commit | efe2a4d5cf96dd37bc4782ba1880cee4ed1117c5 (patch) | |
| tree | 9b8636853fefbfcd38e804ddccac013bd216d50e /board/tqm5200/tqm5200.c | |
| parent | bea8e84b52ac3c499b5868978a29c20cf92cf88f (diff) | |
| download | olio-uboot-2014.01-efe2a4d5cf96dd37bc4782ba1880cee4ed1117c5.tar.xz olio-uboot-2014.01-efe2a4d5cf96dd37bc4782ba1880cee4ed1117c5.zip | |
Code cleanup.
Diffstat (limited to 'board/tqm5200/tqm5200.c')
| -rw-r--r-- | board/tqm5200/tqm5200.c | 22 | 
1 files changed, 11 insertions, 11 deletions
| diff --git a/board/tqm5200/tqm5200.c b/board/tqm5200/tqm5200.c index 40f5a7d1d..5ac6cb5ce 100644 --- a/board/tqm5200/tqm5200.c +++ b/board/tqm5200/tqm5200.c @@ -419,7 +419,7 @@ int last_stage_init (void)  	/* save origianl SRAM content  */  	save = *(volatile u16 *)CFG_CS2_START;  	restore = 1; -	 +  	/* write test pattern to SRAM */  	*(volatile u16 *)CFG_CS2_START = 0xA5A5;  	__asm__ volatile ("sync"); @@ -430,7 +430,7 @@ int last_stage_init (void)  	tmp = *(volatile u16 *)CFG_FLASH_BASE;  	if (tmp == 0xA5A5)  		puts ("!! possible error in SRAM detection\n"); -	 +  	if (*(volatile u16 *)CFG_CS2_START != 0xA5A5) {  		/* no SRAM at all, disable cs */  		*(vu_long *)MPC5XXX_ADDECR &= ~(1 << 18); @@ -445,31 +445,31 @@ int last_stage_init (void)  		__asm__ volatile ("sync");  		if (*(volatile u16 *)(CFG_CS2_START + (1<<19)) == 0x1111) {  			/* SRAM size = 512 kByte */ -			*(vu_long *)MPC5XXX_CS2_STOP = STOP_REG(CFG_CS2_START,  +			*(vu_long *)MPC5XXX_CS2_STOP = STOP_REG(CFG_CS2_START,  								0x80000);  			__asm__ volatile ("sync");  			puts ("SRAM:  512 kB\n");  		}  		else -			puts ("!! possible error in SRAM detection\n");	 +			puts ("!! possible error in SRAM detection\n");  	}  	else { -		puts ("SRAM:  1 MB\n");	 +		puts ("SRAM:  1 MB\n");  	}  	/* restore origianl SRAM content  */  	if (restore) {  		*(volatile u16 *)CFG_CS2_START = save;  		__asm__ volatile ("sync");  	} -	 -	/*  + +	/*  	 * Check for Grafic Controller  	 */  	/* save origianl FB content  */  	save = *(volatile u16 *)CFG_CS1_START;  	restore = 1; -	 +  	/* write test pattern to FB memory */  	*(volatile u16 *)CFG_CS1_START = 0xA5A5;  	__asm__ volatile ("sync"); @@ -480,7 +480,7 @@ int last_stage_init (void)  	tmp = *(volatile u16 *)CFG_FLASH_BASE;  	if (tmp == 0xA5A5)  		puts ("!! possible error in grafic controller detection\n"); -	 +  	if (*(volatile u16 *)CFG_CS1_START != 0xA5A5) {  		/* no grafic controller at all, disable cs */  		*(vu_long *)MPC5XXX_ADDECR &= ~(1 << 17); @@ -490,14 +490,14 @@ int last_stage_init (void)  		__asm__ volatile ("sync");  	}  	else { -		puts ("VGA:   SMI501 (Voyager) with 8 MB\n");	 +		puts ("VGA:   SMI501 (Voyager) with 8 MB\n");  	}  	/* restore origianl FB content  */  	if (restore) {  		*(volatile u16 *)CFG_CS1_START = save;  		__asm__ volatile ("sync");  	} -	 +  	return 0;  }  #endif /* CONFIG_CS_AUTOCONF */ |