From 4a391c4e7fe8d7aaf8d903eedac73f2bb9f39438 Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Tue, 16 Sep 2025 14:56:59 +0200 Subject: [PATCH] Kconfig: Fix Kconfig style Remove spaces from Kconfig Add TABs Signed-off-by: simbit18 --- Kconfig | 52 ++++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/Kconfig b/Kconfig index 0dc5476a9bf..d40960fb442 100644 --- a/Kconfig +++ b/Kconfig @@ -2470,44 +2470,44 @@ config STACK_CANARIES in footprint and an associated decrease in performance. choice STACK_CANARIES_LEVEL - prompt "Stack Canaries Level Configuration" - default STACK_PROTECTOR_ALL - depends on STACK_CANARIES - ---help--- - Based on the configuration options, configure the stack Canaries Level. + prompt "Stack Canaries Level Configuration" + default STACK_PROTECTOR_ALL + depends on STACK_CANARIES + ---help--- + Based on the configuration options, configure the stack Canaries Level. config STACK_PROTECTOR - bool "-fstack-protector" - ---help--- - Enable basic stack protection. + bool "-fstack-protector" + ---help--- + Enable basic stack protection. config STACK_PROTECTOR_STRONG - bool "-fstack-protector-strong" - ---help--- - Using stronger stack protection mechanisms may involve more complex - security checks. + bool "-fstack-protector-strong" + ---help--- + Using stronger stack protection mechanisms may involve more complex + security checks. config STACK_PROTECTOR_ALL - bool "-fstack-protector-all" - ---help--- - Enable stack protection for all functions, including those that are - typically not protected. + bool "-fstack-protector-all" + ---help--- + Enable stack protection for all functions, including those that are + typically not protected. config STACK_PROTECTOR_EXPLICIT - bool "-fstack-protector-explicit" - ---help--- - Enable stack protection only for functions explicitly marked as - requiring stack protection. + bool "-fstack-protector-explicit" + ---help--- + Enable stack protection only for functions explicitly marked as + requiring stack protection. endchoice # Stack Canaries Level Configuration config STACK_CANARIES_LEVEL - string - default "-fstack-protector" if STACK_PROTECTOR - default "-fstack-protector-strong" if STACK_PROTECTOR_STRONG - default "-fstack-protector-all" if STACK_PROTECTOR_ALL - default "-fstack-protector-explicit" if STACK_PROTECTOR_EXPLICIT - depends on STACK_CANARIES + string + default "-fstack-protector" if STACK_PROTECTOR + default "-fstack-protector-strong" if STACK_PROTECTOR_STRONG + default "-fstack-protector-all" if STACK_PROTECTOR_ALL + default "-fstack-protector-explicit" if STACK_PROTECTOR_EXPLICIT + depends on STACK_CANARIES config STACK_USAGE bool "Generate stack usage information"