soc: soc_family: Consistently quote string defaults

In preparation for introducing a warning.

Unquoted string defaults work through a quirk of Kconfig (undefined
symbols get their name as their string value), but look confusing. It's
done inconsistently now too.

Suggested by Kumar Gala.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
Ulf Magnusson 2018-05-25 21:12:24 +02:00 committed by Anas Nashif
commit cc4473831f
6 changed files with 6 additions and 6 deletions

View file

@ -13,7 +13,7 @@ config SOC_FAMILY_ARM
if SOC_FAMILY_ARM
config SOC_FAMILY
string
default arm
default "arm"
gsource "arch/arm/soc/arm/*/Kconfig.soc"
endif # SOC_FAMILY_ARM

View file

@ -12,7 +12,7 @@ if SOC_FAMILY_SAM
config SOC_FAMILY
string
default atmel_sam
default "atmel_sam"
# Select SoC Part No. and configuration options
gsource "arch/arm/soc/atmel_sam/*/Kconfig.soc"

View file

@ -11,7 +11,7 @@ if SOC_FAMILY_SAM0
config SOC_FAMILY
string
default atmel_sam0
default "atmel_sam0"
gsource "arch/arm/soc/atmel_sam0/*/Kconfig.soc"

View file

@ -13,7 +13,7 @@ config SOC_FAMILY_NRF
if SOC_FAMILY_NRF
config SOC_FAMILY
string
default nordic_nrf
default "nordic_nrf"
gsource "arch/arm/soc/nordic_nrf/*/Kconfig.soc"
endif # SOC_FAMILY_NRF

View file

@ -19,7 +19,7 @@ config BUILD_OUTPUT_HEX
config SOC_FAMILY
string
default st_stm32
default "st_stm32"
config STM32_ARM_MPU_ENABLE
bool "Enable MPU on STM32"

View file

@ -9,7 +9,7 @@ config SOC_FAMILY_TISIMPLELINK
if SOC_FAMILY_TISIMPLELINK
config SOC_FAMILY
string
default ti_simplelink
default "ti_simplelink"
gsource "arch/arm/soc/ti_simplelink/*/Kconfig.soc"
endif # SOC_FAMILY_TISIMPLELINK