Kconfig: Fix "warning: style: quotes recommended" warnings
authorTom Rini <trini@konsulko.com>
Sat, 15 Mar 2025 01:29:33 +0000 (19:29 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 1 Apr 2025 14:46:18 +0000 (08:46 -0600)
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>
Kconfig
drivers/pinctrl/intel/Kconfig
lib/Kconfig

diff --git a/Kconfig b/Kconfig
index 70dc385..a508c54 100644 (file)
--- a/Kconfig
+++ b/Kconfig
@@ -748,7 +748,7 @@ source "dts/Kconfig"
 
 source "env/Kconfig"
 
-menu Networking
+menu "Networking"
 
 choice
        prompt "Networking stack"
index 316a8fe..0d8bfc5 100644 (file)
@@ -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
index a21b337..1795446 100644 (file)
@@ -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"