x86: rename CONFIG_SSE* to CONFIG_X86_SSE*

This adds X86 keyword to the kconfigs to indicate these are
for x86. The old options are still there marked as
deprecated.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
Daniel Leung 2021-01-07 15:07:29 -08:00 committed by Anas Nashif
commit ce44048d46
16 changed files with 71 additions and 52 deletions

View file

@ -247,7 +247,7 @@ extern void k_thread_foreach_unlocked(
#ifdef CONFIG_X86
/* x86 Bitmask definitions for threads user options */
#if defined(CONFIG_FPU_SHARING) && defined(CONFIG_SSE)
#if defined(CONFIG_FPU_SHARING) && defined(CONFIG_X86_SSE)
/* thread uses SSEx (and also FP) registers */
#define K_SSE_REGS (BIT(7))
#endif