arch: x86: Kconfig: Remove redundant 'default n' properties
Bool symbols implicitly default to 'n'. A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you want to override a 'default y' on the base definition of the symbol. It isn't used like that on any of these symbols though. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
parent
aed5e360ee
commit
87ecbe7f48
4 changed files with 0 additions and 15 deletions
|
@ -51,7 +51,6 @@ menu "Processor Capabilities"
|
||||||
|
|
||||||
config X86_IAMCU
|
config X86_IAMCU
|
||||||
bool
|
bool
|
||||||
default n
|
|
||||||
prompt "IAMCU calling convention"
|
prompt "IAMCU calling convention"
|
||||||
help
|
help
|
||||||
The IAMCU calling convention changes the X86 C calling convention to
|
The IAMCU calling convention changes the X86 C calling convention to
|
||||||
|
@ -64,7 +63,6 @@ config X86_IAMCU
|
||||||
menu "Memory Management"
|
menu "Memory Management"
|
||||||
config X86_MMU
|
config X86_MMU
|
||||||
bool
|
bool
|
||||||
default n
|
|
||||||
prompt "Enable Memory Management Unit"
|
prompt "Enable Memory Management Unit"
|
||||||
help
|
help
|
||||||
This options enables the memory management unit present in x86. Enabling
|
This options enables the memory management unit present in x86. Enabling
|
||||||
|
@ -73,7 +71,6 @@ config X86_MMU
|
||||||
config X86_PAE_MODE
|
config X86_PAE_MODE
|
||||||
bool
|
bool
|
||||||
depends on X86_MMU
|
depends on X86_MMU
|
||||||
default n
|
|
||||||
prompt "Enable PAE page tables"
|
prompt "Enable PAE page tables"
|
||||||
help
|
help
|
||||||
When selected the Page address extension mode is enabled. The PAE
|
When selected the Page address extension mode is enabled. The PAE
|
||||||
|
@ -144,7 +141,6 @@ config SSE
|
||||||
bool
|
bool
|
||||||
prompt "SSE registers"
|
prompt "SSE registers"
|
||||||
depends on FLOAT
|
depends on FLOAT
|
||||||
default n
|
|
||||||
help
|
help
|
||||||
This option enables the use of SSE registers by threads.
|
This option enables the use of SSE registers by threads.
|
||||||
|
|
||||||
|
@ -152,7 +148,6 @@ config SSE_FP_MATH
|
||||||
bool
|
bool
|
||||||
prompt "Compiler-generated SSEx instructions"
|
prompt "Compiler-generated SSEx instructions"
|
||||||
depends on SSE
|
depends on SSE
|
||||||
default n
|
|
||||||
help
|
help
|
||||||
This option allows the compiler to generate SSEx instructions for
|
This option allows the compiler to generate SSEx instructions for
|
||||||
performing floating point math. This can greatly improve performance
|
performing floating point math. This can greatly improve performance
|
||||||
|
@ -189,7 +184,6 @@ config ISA_IA32
|
||||||
config IA32_LEGACY_IO_PORTS
|
config IA32_LEGACY_IO_PORTS
|
||||||
bool
|
bool
|
||||||
prompt "Support IA32 legacy IO ports"
|
prompt "Support IA32 legacy IO ports"
|
||||||
default n
|
|
||||||
depends on ISA_IA32
|
depends on ISA_IA32
|
||||||
help
|
help
|
||||||
This option enables IA32 legacy IO ports. Note these are much slower
|
This option enables IA32 legacy IO ports. Note these are much slower
|
||||||
|
@ -228,7 +222,6 @@ config CLFLUSH_INSTRUCTION_SUPPORTED
|
||||||
bool
|
bool
|
||||||
prompt "CLFLUSH instruction supported"
|
prompt "CLFLUSH instruction supported"
|
||||||
depends on !CLFLUSH_DETECT && CACHE_FLUSHING
|
depends on !CLFLUSH_DETECT && CACHE_FLUSHING
|
||||||
default n
|
|
||||||
help
|
help
|
||||||
An implementation of sys_cache_flush() that uses CLFLUSH is made
|
An implementation of sys_cache_flush() that uses CLFLUSH is made
|
||||||
available, instead of the one using WBINVD.
|
available, instead of the one using WBINVD.
|
||||||
|
@ -241,7 +234,6 @@ config CLFLUSH_DETECT
|
||||||
bool
|
bool
|
||||||
prompt "Detect support of CLFLUSH instruction at runtime"
|
prompt "Detect support of CLFLUSH instruction at runtime"
|
||||||
depends on CACHE_FLUSHING
|
depends on CACHE_FLUSHING
|
||||||
default n
|
|
||||||
help
|
help
|
||||||
This option should be enabled if it is not known in advance whether the
|
This option should be enabled if it is not known in advance whether the
|
||||||
CPU supports the CLFLUSH instruction or not.
|
CPU supports the CLFLUSH instruction or not.
|
||||||
|
@ -260,7 +252,6 @@ config ARCH_CACHE_FLUSH_DETECT
|
||||||
|
|
||||||
config CACHE_FLUSHING
|
config CACHE_FLUSHING
|
||||||
bool
|
bool
|
||||||
default n
|
|
||||||
prompt "Enable cache flushing mechanism"
|
prompt "Enable cache flushing mechanism"
|
||||||
help
|
help
|
||||||
This links in the sys_cache_flush() function. A mechanism for flushing the
|
This links in the sys_cache_flush() function. A mechanism for flushing the
|
||||||
|
@ -269,7 +260,6 @@ config CACHE_FLUSHING
|
||||||
|
|
||||||
config PIC_DISABLE
|
config PIC_DISABLE
|
||||||
bool "Disable PIC"
|
bool "Disable PIC"
|
||||||
default n
|
|
||||||
help
|
help
|
||||||
This option disables all interrupts on the PIC
|
This option disables all interrupts on the PIC
|
||||||
|
|
||||||
|
@ -312,7 +302,6 @@ config XIP
|
||||||
|
|
||||||
config X86_FIXED_IRQ_MAPPING
|
config X86_FIXED_IRQ_MAPPING
|
||||||
bool
|
bool
|
||||||
default n
|
|
||||||
help
|
help
|
||||||
Specify whether the current interrupt controller in use has a fixed
|
Specify whether the current interrupt controller in use has a fixed
|
||||||
mapping between IDT vectors and IRQ lines.
|
mapping between IDT vectors and IRQ lines.
|
||||||
|
|
|
@ -63,7 +63,6 @@ config GDT_DYNAMIC
|
||||||
bool
|
bool
|
||||||
prompt "Store GDT in RAM so that it can be modified"
|
prompt "Store GDT in RAM so that it can be modified"
|
||||||
depends on SET_GDT
|
depends on SET_GDT
|
||||||
default n
|
|
||||||
help
|
help
|
||||||
This option stores the GDT in RAM instead of ROM, so that it may
|
This option stores the GDT in RAM instead of ROM, so that it may
|
||||||
be modified at runtime at the expense of some memory.
|
be modified at runtime at the expense of some memory.
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
|
|
||||||
config SOC_FAMILY_QUARK
|
config SOC_FAMILY_QUARK
|
||||||
bool
|
bool
|
||||||
default n
|
|
||||||
|
|
||||||
if SOC_FAMILY_QUARK
|
if SOC_FAMILY_QUARK
|
||||||
config SOC_FAMILY
|
config SOC_FAMILY
|
||||||
|
|
|
@ -24,7 +24,6 @@ config SS_RESET_VECTOR
|
||||||
|
|
||||||
config ARC_INIT
|
config ARC_INIT
|
||||||
bool "Quark SE ARC Kickoff"
|
bool "Quark SE ARC Kickoff"
|
||||||
default n
|
|
||||||
help
|
help
|
||||||
Allows x86 processor to kickoff the ARC slave processor.
|
Allows x86 processor to kickoff the ARC slave processor.
|
||||||
|
|
||||||
|
@ -52,7 +51,6 @@ config SYS_LOG_ARC_INIT_LEVEL
|
||||||
config ARC_GDB_ENABLE
|
config ARC_GDB_ENABLE
|
||||||
bool "Allows the usage of GDB with the ARC processor."
|
bool "Allows the usage of GDB with the ARC processor."
|
||||||
depends on ARC_INIT
|
depends on ARC_INIT
|
||||||
default n
|
|
||||||
help
|
help
|
||||||
This option will stop the master processor from boot-strapping
|
This option will stop the master processor from boot-strapping
|
||||||
the ARC slave processor. This will allow GDB to halt and
|
the ARC slave processor. This will allow GDB to halt and
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue