diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2014-11-20 16:11:00 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-25 06:34:02 -0700 |
commit | a549f7497b4d719d37e4a20378c81c1b29bf0404 (patch) | |
tree | 481da9302ec849aa755a3ffc86010752cc130890 /arch/x86/include | |
parent | 4372a9eca5561ec21277b616b5223cf23ab526ca (diff) | |
download | u-boot-imx-a549f7497b4d719d37e4a20378c81c1b29bf0404.zip u-boot-imx-a549f7497b4d719d37e4a20378c81c1b29bf0404.tar.gz u-boot-imx-a549f7497b4d719d37e4a20378c81c1b29bf0404.tar.bz2 |
x86: Remove cpu_init_r() for x86
Since cpu_init_interrupts() was moved out of cpu_init_r(), it is
useless to keep cpu_init_r() for x86, thus remove it.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/u-boot-x86.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/include/asm/u-boot-x86.h b/arch/x86/include/asm/u-boot-x86.h index 98217dd..36145cb 100644 --- a/arch/x86/include/asm/u-boot-x86.h +++ b/arch/x86/include/asm/u-boot-x86.h @@ -10,8 +10,6 @@ /* cpu/.../cpu.c */ int arch_cpu_init(void); -int x86_cpu_init_r(void); -int cpu_init_r(void); int x86_cpu_init_f(void); int cpu_init_f(void); void init_gd(gd_t *id, u64 *gdt_addr); |