diff options
Diffstat (limited to 'board/quantum/quantum.c')
| -rw-r--r-- | board/quantum/quantum.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/board/quantum/quantum.c b/board/quantum/quantum.c index 2861bc3b1..afa6e113d 100644 --- a/board/quantum/quantum.c +++ b/board/quantum/quantum.c @@ -170,14 +170,14 @@ static long int dram_size (long int mamr_value, long int *base,  	memctl->memc_mamr = mamr_value;  	for (cnt = maxsize / sizeof (long); cnt > 0; cnt >>= 1) { -		addr = base + cnt;	/* pointer arith! */ +		addr = (volatile ulong *)(base + cnt);	/* pointer arith! */  		save[i++] = *addr;  		*addr = ~cnt;  	}  	/* write 0 to base address */ -	addr = base; +	addr = (volatile ulong *)base;  	save[i] = *addr;  	*addr = 0; @@ -194,7 +194,7 @@ static long int dram_size (long int mamr_value, long int *base,  	}  	for (cnt = 1; cnt <= maxsize / sizeof (long); cnt <<= 1) { -		addr = base + cnt;	/* pointer arith! */ +		addr = (volatile ulong *)(base + cnt);	/* pointer arith! */  		val = *addr;  		*addr = save[--i]; |