diff options
Diffstat (limited to 'arch/x86/cpu/coreboot/sdram.c')
| -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 786009c74..b4fe6c91c 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(); +} |