This is an automated email from the ASF dual-hosted git repository.

linguini1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git

commit 211f5072398ffa4be60ada24636c4a22133f6abf
Author: simbit18 <[email protected]>
AuthorDate: Tue Aug 11 19:14:38 2026 +0200

    system: Fix Kconfig style
    
    - Remove spaces from Kconfig
    
    - Add TABs
    
    - Fixed the header file
    
    Signed-off-by: simbit18 <[email protected]>
---
 system/flatbuffers/Kconfig | 19 ++-----------------
 system/smf/Kconfig         | 16 ++++++++--------
 2 files changed, 10 insertions(+), 25 deletions(-)

diff --git a/system/flatbuffers/Kconfig b/system/flatbuffers/Kconfig
index 7ece716ba..0d196ab49 100644
--- a/system/flatbuffers/Kconfig
+++ b/system/flatbuffers/Kconfig
@@ -1,22 +1,7 @@
-############################################################################
-# apps/system/flatbuffers/Kconfig
 #
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.  The
-# ASF licenses this file to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance with the
-# License.  You may obtain a copy of the License at
+# For a description of the syntax of this configuration file,
+# see the file kconfig-language.txt in the NuttX tools repository.
 #
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
-# License for the specific language governing permissions and limitations
-# under the License.
-#
-############################################################################
 
 config SYSTEM_FLATBUFFERS
        bool "flatbuffers"
diff --git a/system/smf/Kconfig b/system/smf/Kconfig
index 62e52cf56..269888f90 100644
--- a/system/smf/Kconfig
+++ b/system/smf/Kconfig
@@ -3,10 +3,10 @@
 # For syntax reference, see kconfig-language.txt in the NuttX tools repository.
 
 config SYSTEM_SMF
-  bool "(SMF) support"
-  default n
-  ---help---
-    Enables the State Machine Framework (SMF) for implementing state machines
+       bool "(SMF) support"
+       default n
+       ---help---
+               Enables the State Machine Framework (SMF) for implementing 
state machines
 
 if SYSTEM_SMF
 
@@ -14,15 +14,15 @@ config SYSTEM_SMF_ANCESTOR_SUPPORT
        bool "Enable ancestor/parent state support"
        default n
        ---help---
-         Enables support for parent/ancestor relationships between SMF states.
-         Required for hierarchical state machines.
+               Enables support for parent/ancestor relationships between SMF 
states.
+               Required for hierarchical state machines.
 
 config SYSTEM_SMF_INITIAL_TRANSITION
        bool "Enable initial transition support"
        default n
        depends on SYSTEM_SMF_ANCESTOR_SUPPORT
        ---help---
-         Enables support for initial transitions in hierarchical states.
-         Depends on ancestor/parent state support.
+               Enables support for initial transitions in hierarchical states.
+               Depends on ancestor/parent state support.
 
 endif # SYSTEM_SMF

Reply via email to