diff options
author | Rogan Dawes <rogan@dawes.za.net> | 2011-04-13 23:54:53 +0530 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-04-27 19:38:08 +0200 |
commit | 286a5b253a5a154d8b0a1403258bc8b99600fc98 (patch) | |
tree | 4c85e61828a64a211637942f445e69d8bfe84960 /arch/arm/cpu | |
parent | 81a9ab21ca4f1af85efd37de7baaad131f0e7edc (diff) | |
download | u-boot-imx-286a5b253a5a154d8b0a1403258bc8b99600fc98.zip u-boot-imx-286a5b253a5a154d8b0a1403258bc8b99600fc98.tar.gz u-boot-imx-286a5b253a5a154d8b0a1403258bc8b99600fc98.tar.bz2 |
Orion5x: Correct DRAM bank detection
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/arm926ejs/orion5x/dram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/arm926ejs/orion5x/dram.c b/arch/arm/cpu/arm926ejs/orion5x/dram.c index b749282..2ae8f48 100644 --- a/arch/arm/cpu/arm926ejs/orion5x/dram.c +++ b/arch/arm/cpu/arm926ejs/orion5x/dram.c @@ -38,7 +38,7 @@ u32 orion5x_sdram_bar(enum memory_bank bank) { struct orion5x_ddr_addr_decode_registers *winregs = (struct orion5x_ddr_addr_decode_registers *) - ORION5X_CPU_WIN_BASE; + ORION5X_DRAM_BASE; u32 result = 0; u32 enable = 0x01 & winregs[bank].size; |