mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 02:44:37 +00:00
Kconfig: Fix "warning: style: quotes recommended" warnings
We have three warnings about needing to use quotes around some strings in Kconfig files today. In two of these cases we can just add the missing strings. In the case of INTEL_PINCTRL_PADCFG_PADTOL the symbol is never referenced and should be dropped. Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
be7693386d
commit
9b4b86f90c
3 changed files with 4 additions and 5 deletions
2
Kconfig
2
Kconfig
|
@ -748,7 +748,7 @@ source "dts/Kconfig"
|
|||
|
||||
source "env/Kconfig"
|
||||
|
||||
menu Networking
|
||||
menu "Networking"
|
||||
|
||||
choice
|
||||
prompt "Networking stack"
|
||||
|
|
|
@ -8,9 +8,6 @@ config INTEL_PINCTRL_DUAL_ROUTE_SUPPORT
|
|||
bool
|
||||
default y
|
||||
|
||||
config INTEL_PINCTRL_PADCFG_PADTOL
|
||||
bool n
|
||||
|
||||
config INTEL_PINCTRL_IOSTANDBY
|
||||
bool
|
||||
default y
|
||||
|
|
|
@ -445,7 +445,9 @@ config CIRCBUF
|
|||
source "lib/dhry/Kconfig"
|
||||
|
||||
menu "Alternative crypto libraries"
|
||||
source lib/mbedtls/Kconfig
|
||||
|
||||
source "lib/mbedtls/Kconfig"
|
||||
|
||||
endmenu
|
||||
|
||||
menu "Security support"
|
||||
|
|
Loading…
Add table
Reference in a new issue