arch/x86: (Intel64) fix conditional assembly in locore.S
was ignoring the rest of the expression, though the effect was harmless (including unreachable code in some builds). Signed-off-by: Charles E. Youse <charles.youse@intel.com>
This commit is contained in:
parent
f361798cdf
commit
74e3717af6
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
|||
.section .locore,"ax"
|
||||
.code32
|
||||
|
||||
#ifdef CONFIG_SMP && (CONFIG_MP_NUM_CPUS > 1)
|
||||
#if defined(CONFIG_SMP) && (CONFIG_MP_NUM_CPUS > 1)
|
||||
|
||||
/*
|
||||
* APs are sent here on startup, in real mode. This
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue