diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-06 13:20:05 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-21 07:24:09 +0100 |
commit | 07387d1769c7cc29ff2402117148477263c4c5ce (patch) | |
tree | d3e88335fbd000096018a6cff5ffdb75b1936363 /arch/x86/include | |
parent | 76f90f3020433a2d06d9ebf897f65862d6248c8e (diff) | |
download | u-boot-imx-07387d1769c7cc29ff2402117148477263c4c5ce.zip u-boot-imx-07387d1769c7cc29ff2402117148477263c4c5ce.tar.gz u-boot-imx-07387d1769c7cc29ff2402117148477263c4c5ce.tar.bz2 |
x86: Use the standard dram_init() function
Instead of having an x86-specific DRAM init function, adjust things so we
can use the normal one.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/u-boot-x86.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/u-boot-x86.h b/arch/x86/include/asm/u-boot-x86.h index 9e525dd..89618c7 100644 --- a/arch/x86/include/asm/u-boot-x86.h +++ b/arch/x86/include/asm/u-boot-x86.h @@ -27,8 +27,8 @@ unsigned long get_tbclk_mhz(void); void timer_set_base(uint64_t base); int pcat_timer_init(void); -/* Architecture specific - can be in arch/x86/cpu/, arch/x86/lib/, or $(BOARD)/ */ -int dram_init_f(void); +/* Architecture specific DRAM init */ +int dram_init(void); /* cpu/.../interrupts.c */ int cpu_init_interrupts(void); |