diff options
| author | Graeme Russ <graeme.russ@gmail.com> | 2010-04-24 00:06:00 +1000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-05-06 00:20:56 +0200 | 
| commit | 1f9f3cf6ccbccae1c1edff01ec20fe2a586b9701 (patch) | |
| tree | bcc36d003534667bd3dc189aed3c1d8920604ea7 | |
| parent | d20053efdf328d97a018536689fc55df4faf1094 (diff) | |
| download | olio-uboot-2014.01-1f9f3cf6ccbccae1c1edff01ec20fe2a586b9701.tar.xz olio-uboot-2014.01-1f9f3cf6ccbccae1c1edff01ec20fe2a586b9701.zip | |
sc520: Fix minor DRAM Controller Setup bug
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
| -rw-r--r-- | arch/i386/cpu/sc520/sc520_asm.S | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/i386/cpu/sc520/sc520_asm.S b/arch/i386/cpu/sc520/sc520_asm.S index abb03bf91..fff56c00b 100644 --- a/arch/i386/cpu/sc520/sc520_asm.S +++ b/arch/i386/cpu/sc520/sc520_asm.S @@ -500,7 +500,7 @@ emptybank:  	/* just have your hardware desinger _GIVE_ you what you need here! */  	movl    $DRCTMCTL, %edi  	movb    $CONFIG_SYS_SDRAM_DRCTMCTL,%al -	movb    (%edi), %al +	movb    %al, (%edi)  #else  #if defined(CONFIG_SYS_SDRAM_CAS_LATENCY_2T) || defined(CONFIG_SYS_SDRAM_CAS_LATENCY_3T)  	/* set the CAS latency now since it is hard to do |