diff options
author | Tom Rini <trini@ti.com> | 2013-04-16 16:12:33 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-04-16 16:12:33 -0400 |
commit | 314dd4fecc87175f6e79eb977966fb60b33c543c (patch) | |
tree | bfe799c8730caab5ca507e50ab8dfe09e8c4abfb /arch | |
parent | 5873d0fbad2b1a94db7b9c8c8f5d77c10479a9dd (diff) | |
parent | 617c246f3c123d4a2d4dba9d08a4a2dd324cb407 (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-x86
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/cpu/coreboot/sdram.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/cpu/coreboot/sdram.c b/arch/x86/cpu/coreboot/sdram.c index 786009c746d..b4fe6c91cfa 100644 --- a/arch/x86/cpu/coreboot/sdram.c +++ b/arch/x86/cpu/coreboot/sdram.c @@ -113,7 +113,7 @@ int dram_init_f(void) return 0; } -int dram_init(void) +int dram_init_banksize(void) { int i, j; @@ -132,3 +132,8 @@ int dram_init(void) } return 0; } + +int dram_init(void) +{ + return dram_init_banksize(); +} |