diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-06 13:20:08 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-21 07:24:09 +0100 |
commit | e1ffd81797d59652124bd9cda813a58644f5dea9 (patch) | |
tree | f6cd2ec5d83ceb65f472480336ab1b542464afc0 /arch/x86/cpu/cpu.c | |
parent | 8b37c7694f1eace82626d00fbfb85311ebf0d220 (diff) | |
download | u-boot-imx-e1ffd81797d59652124bd9cda813a58644f5dea9.zip u-boot-imx-e1ffd81797d59652124bd9cda813a58644f5dea9.tar.gz u-boot-imx-e1ffd81797d59652124bd9cda813a58644f5dea9.tar.bz2 |
x86: Fix up some missing prototypes
Some functions are missing prototypes. Fix those that are specific to x86.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/cpu/cpu.c')
-rw-r--r-- | arch/x86/cpu/cpu.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/cpu/cpu.c b/arch/x86/cpu/cpu.c index d6ba246..6441dde 100644 --- a/arch/x86/cpu/cpu.c +++ b/arch/x86/cpu/cpu.c @@ -197,14 +197,13 @@ asm(".globl generate_gpf\n" "generate_gpf:\n" "ljmp $0x70, $0x47114711\n"); -void __reset_cpu(ulong addr) +__weak void reset_cpu(ulong addr) { printf("Resetting using x86 Triple Fault\n"); set_vector(13, generate_gpf); /* general protection fault handler */ set_vector(8, generate_gpf); /* double fault handler */ generate_gpf(); /* start the show */ } -void reset_cpu(ulong addr) __attribute__((weak, alias("__reset_cpu"))); int dcache_status(void) { |