From: Tom Rini Date: Sat, 15 Mar 2025 01:29:33 +0000 (-0600) Subject: Kconfig: Fix "warning: style: quotes recommended" warnings X-Git-Tag: v2025.07-rc1~71^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b4b86f90c3a0484d4ecdcdb9977c385363ce5f8;p=pandora-u-boot.git 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 --- diff --git a/Kconfig b/Kconfig index 70dc385dd2f..a508c5430f0 100644 --- a/Kconfig +++ b/Kconfig @@ -748,7 +748,7 @@ source "dts/Kconfig" source "env/Kconfig" -menu Networking +menu "Networking" choice prompt "Networking stack" diff --git a/drivers/pinctrl/intel/Kconfig b/drivers/pinctrl/intel/Kconfig index 316a8fe27fd..0d8bfc53c11 100644 --- a/drivers/pinctrl/intel/Kconfig +++ b/drivers/pinctrl/intel/Kconfig @@ -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 diff --git a/lib/Kconfig b/lib/Kconfig index a21b3378fa7..17954461114 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -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"