arch: riscv32: 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:
Ulf Magnusson 2018-06-22 00:15:41 +02:00 committed by Kumar Gala
commit 81d61601a8
2 changed files with 0 additions and 6 deletions

View file

@ -25,20 +25,17 @@ menu "RISCV32 Processor Options"
config INCLUDE_RESET_VECTOR
bool "Include Reset vector"
default n
help
Include the reset vector stub that inits CPU and then jumps to __start
config RISCV_SOC_CONTEXT_SAVE
bool "Enable SOC-based context saving in IRQ handler"
default n
help
Enable SOC-based context saving, for SOCS which require saving of
extra registers when entering an interrupt/exception
config RISCV_SOC_INTERRUPT_INIT
bool "Enable SOC-based interrupt initialization"
default n
help
Enable SOC-based interrupt initialization
(call soc_interrupt_init, within _IntLibInit when enabled)
@ -53,7 +50,6 @@ config RISCV_GENERIC_TOOLCHAIN
config RISCV_HAS_CPU_IDLE
bool "Does SOC has CPU IDLE instruction"
default n
help
Does SOC has CPU IDLE instruction

View file

@ -9,7 +9,6 @@
config SOC_FAMILY_RISCV_PRIVILEGE
bool
# omit prompt to signify a "hidden" option
default n
config SOC_FAMILY
string
@ -18,7 +17,6 @@ config SOC_FAMILY
config RISCV_HAS_PLIC
bool "Does the SOC provide support for a Platform Level Interrupt Controller"
default n
depends on SOC_FAMILY_RISCV_PRIVILEGE
help
Does the SOC provide support for a Platform Level Interrupt Controller