diff --git a/examples/platform/silabs/main.cpp b/examples/platform/silabs/main.cpp index 975f5532ba6ecd..476a51e89d0e1b 100644 --- a/examples/platform/silabs/main.cpp +++ b/examples/platform/silabs/main.cpp @@ -17,16 +17,15 @@ * limitations under the License. */ #include "sl_component_catalog.h" -#include -#include "sl_system_kernel.h" #include "sl_system_init.h" +#include "sl_system_kernel.h" +#include int main(void) { - sl_system_init(); - - // Initialize the application. For example, create periodic timer(s) or - // task(s) if the kernel is present. - SilabsMatterConfig::app_init(); - -} \ No newline at end of file + sl_system_init(); + + // Initialize the application. For example, create periodic timer(s) or + // task(s) if the kernel is present. + SilabsMatterConfig::app_init(); +}