diff options
author | Simon Glass | 2014-11-06 13:20:06 -0700 |
---|---|---|
committer | Simon Glass | 2014-11-21 07:24:09 +0100 |
commit | 8b37c7694f1eace82626d00fbfb85311ebf0d220 (patch) | |
tree | bd9bf3ee79b2ace78a1b7c86fec752cefb393826 /common | |
parent | 07387d1769c7cc29ff2402117148477263c4c5ce (diff) |
x86: Use the standard arch_cpu_init() function
Instead of an x86-specific cpu_init_f() function, use the normal U-Boot one
for this purpose. Also remove a useless/misleading comment.
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 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/board_f.c b/common/board_f.c index 1d81ed7c6a1..23d8f6461a5 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -818,7 +818,6 @@ static init_fnc_t init_sequence_f[] = { #endif arch_cpu_init, /* basic arch cpu dependent setup */ #ifdef CONFIG_X86 - cpu_init_f, /* TODO(sjg@chromium.org): remove */ # ifdef CONFIG_OF_CONTROL find_fdt, /* TODO(sjg@chromium.org): remove */ # endif |