summaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2015-10-14 02:01:21 -0700
committerSimon Glass <sjg@chromium.org>2015-10-21 07:46:27 -0600
commitef1683d5c36d4906eefd802863ddf4798c0f2a31 (patch)
tree82ea6cb2db186c1620574c98dadb721219b081db /arch/x86
parent06f16c4148ea0dee3b9269051679c87e9a238431 (diff)
downloadblackbird-obmc-uboot-ef1683d5c36d4906eefd802863ddf4798c0f2a31.tar.gz
blackbird-obmc-uboot-ef1683d5c36d4906eefd802863ddf4798c0f2a31.zip
x86: Pass correct cpu_index to ap_init()
In sipi_vector.S, cpu_index (passed as %eax) is wrongly overwritten by the ap_init() function address. Correct it. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/cpu/sipi_vector.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/cpu/sipi_vector.S b/arch/x86/cpu/sipi_vector.S
index bcef12c6f1..0c4a157f38 100644
--- a/arch/x86/cpu/sipi_vector.S
+++ b/arch/x86/cpu/sipi_vector.S
@@ -190,8 +190,8 @@ load_msr:
/* c_handler(cpu_num) */
movl %esi, %eax /* cpu_num */
- mov c_handler, %eax
- call *%eax
+ mov c_handler, %esi
+ call *%esi
.align 4
.globl sipi_params
OpenPOWER on IntegriCloud