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 /common | |
parent | e3bf4c759be1bf037818100e15af425d16822c29 (diff) | |
download | u-boot-65990d568074ad878cbc7e4eb1053508e3707cb6.zip u-boot-65990d568074ad878cbc7e4eb1053508e3707cb6.tar.gz u-boot-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 'common')
-rw-r--r-- | common/board_r.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common/board_r.c b/common/board_r.c index 19c6427..bfa74c7 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -838,9 +838,6 @@ init_fnc_t init_sequence_r[] = { #ifdef CONFIG_CMD_KGDB initr_kgdb, #endif -#ifdef CONFIG_X86 - board_early_init_r, -#endif interrupt_init, #if defined(CONFIG_ARM) || defined(CONFIG_x86) initr_enable_interrupts, |