diff options
| author | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-13 16:45:02 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-10-13 16:45:02 +0200 | 
| commit | 77ddac9480d63a80b6bb76d7ee4dcc2d1070867e (patch) | |
| tree | e9563b2f28ea59062b90bb5712f141e8e9798aee /board/c2mon/c2mon.c | |
| parent | 17a8b276ba2b3499b75cd60b0b5289dbbea7967b (diff) | |
| download | olio-uboot-2014.01-77ddac9480d63a80b6bb76d7ee4dcc2d1070867e.tar.xz olio-uboot-2014.01-77ddac9480d63a80b6bb76d7ee4dcc2d1070867e.zip | |
Cleanup for GCC-4.x
Diffstat (limited to 'board/c2mon/c2mon.c')
| -rw-r--r-- | board/c2mon/c2mon.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/board/c2mon/c2mon.c b/board/c2mon/c2mon.c index 873ff8cce..ca8eb0cb0 100644 --- a/board/c2mon/c2mon.c +++ b/board/c2mon/c2mon.c @@ -91,7 +91,7 @@ const uint sdram_table[] =  int checkboard (void)  { -	unsigned char *s = getenv ("serial#"); +	unsigned char *s = (unsigned char *)getenv ("serial#");  	puts ("Board: TTTech C2MON "); @@ -155,7 +155,7 @@ long int initdram (int board_type)  	 * try 8 column mode  	 */  	size8 = dram_size (CFG_MAMR_8COL, -			   (ulong *)SDRAM_BASE2_PRELIM, +			   SDRAM_BASE2_PRELIM,  			   SDRAM_MAX_SIZE);  	udelay (1000); @@ -164,7 +164,7 @@ long int initdram (int board_type)  	 * try 9 column mode  	 */  	size9 = dram_size (CFG_MAMR_9COL, -			   (ulong *) SDRAM_BASE2_PRELIM, +			   SDRAM_BASE2_PRELIM,  			   SDRAM_MAX_SIZE);  	if (size8 < size9) {		/* leave configuration at 9 columns */ |