diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-14 18:18:22 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-25 06:33:59 -0700 |
commit | 65990d568074ad878cbc7e4eb1053508e3707cb6 (patch) | |
tree | 40b56e42143e8c071d7764c4994715a762a2d1eb /arch/x86/cpu/coreboot | |
parent | e3bf4c759be1bf037818100e15af425d16822c29 (diff) | |
download | u-boot-imx-65990d568074ad878cbc7e4eb1053508e3707cb6.zip u-boot-imx-65990d568074ad878cbc7e4eb1053508e3707cb6.tar.gz u-boot-imx-65990d568074ad878cbc7e4eb1053508e3707cb6.tar.bz2 |
x86: Remove board_early_init_r()
This function is not needed. Remove it to improve the generic init sequence
slightly.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/coreboot')
-rw-r--r-- | arch/x86/cpu/coreboot/coreboot.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/x86/cpu/coreboot/coreboot.c b/arch/x86/cpu/coreboot/coreboot.c index 2df7288..cfacc05 100644 --- a/arch/x86/cpu/coreboot/coreboot.c +++ b/arch/x86/cpu/coreboot/coreboot.c @@ -39,17 +39,6 @@ int board_early_init_f(void) return 0; } -int board_early_init_r(void) -{ - /* CPU Speed to 100MHz */ - gd->cpu_clk = 100000000; - - /* Crystal is 33.000MHz */ - gd->bus_clk = 33000000; - - return 0; -} - int print_cpuinfo(void) { return default_print_cpuinfo(); |