diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-10 18:00:25 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-21 07:24:12 +0100 |
commit | 003504b6fe2296f581191b77fd2f1e98c4f4720c (patch) | |
tree | 8363844010b5206a14d16d0e0cc7522de3093ea6 /common | |
parent | 21b9b14b49b742c3ee70f819aab3918f517bf0b8 (diff) | |
download | u-boot-003504b6fe2296f581191b77fd2f1e98c4f4720c.tar.gz |
x86: Remove unnecessary find_fdt(), prepare_fdt() functions
These are no-longer needed so drop them.
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_f.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/board_f.c b/common/board_f.c index f81f70d442..6e6a1a2b98 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -818,11 +818,6 @@ static init_fnc_t init_sequence_f[] = { probecpu, #endif arch_cpu_init, /* basic arch cpu dependent setup */ -#ifdef CONFIG_X86 -# ifdef CONFIG_OF_CONTROL - find_fdt, /* TODO(sjg@chromium.org): remove */ -# endif -#endif mark_bootstage, #ifdef CONFIG_OF_CONTROL fdtdec_check_fdt, |