kconfig: Rename x86 FPU sharing symbols
This commit renames the x86 Kconfig `CONFIG_{EAGER,LAZY}_FP_SHARING` symbol to `CONFIG_{EAGER,LAZY}_FPU_SHARING`, in order to align with the recent `CONFIG_FP_SHARING` to `CONFIG_FPU_SHARING` renaming. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
parent
aaf93205bb
commit
0b930a2195
12 changed files with 34 additions and 34 deletions
|
@ -98,7 +98,7 @@ config SSE_FP_MATH
|
|||
Disabling this option means that the compiler utilizes only the
|
||||
x87 instruction set for floating point operations.
|
||||
|
||||
config EAGER_FP_SHARING
|
||||
config EAGER_FPU_SHARING
|
||||
bool
|
||||
depends on FPU
|
||||
depends on USERSPACE
|
||||
|
@ -113,10 +113,10 @@ config EAGER_FP_SHARING
|
|||
FPU register set, should be used any time CONFIG_FPU is
|
||||
enabled, regardless if the FPU is used by one thread or multiple.
|
||||
|
||||
config LAZY_FP_SHARING
|
||||
config LAZY_FPU_SHARING
|
||||
bool
|
||||
depends on FPU
|
||||
depends on !EAGER_FP_SHARING
|
||||
depends on !EAGER_FPU_SHARING
|
||||
depends on FPU_SHARING
|
||||
default y if X86_NO_LAZY_FP || !USERSPACE
|
||||
help
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue