nuttx/arch/arm
Gregory Nutt 1ded8bbabb Garbage configuration setting in EFM32 code
arch/arm/src/efm32/efm32_start.c:

      /* For the case of the separate user-/kernel-space build, perform whatever
       * platform specific initialization of the user memory is required.
      * Normally this just means initializing the user space .data and .bss
       * segments.
       */

    #ifdef CONFIG_NUTTX_KERNEL
      efm32_userspace();
      showprogress('E');
    #endif

But there is no CONFIG_NUTTX_KERNEL configuration setting.  Comparing this to other architectures it is clear this should be

    #ifdef CONFIG_BUILD_PROTECTED
2022-02-23 03:40:44 +08:00
..
include stm32u5: Architecture Support for STM32U5 2022-02-13 16:32:35 +08:00
src Garbage configuration setting in EFM32 code 2022-02-23 03:40:44 +08:00
Kconfig add phyplus_rel_1.4 2022-02-15 10:21:10 +08:00