Commit 11fd181c authored by Sreeram Tatapudi's avatar Sreeram Tatapudi Committed by Benjamin Cabé
Browse files

soc: infineon: Move stack definitions to correct place



Moves CONFIG_MAIN_STACK_SIZE to be the default in the
Kconfig.defconfig files

Signed-off-by: default avatarSreeram Tatapudi <sreeram.praveen@infineon.com>
parent d1268626
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -20,6 +20,3 @@ CONFIG_GPIO=y

# Enable clock controller
CONFIG_CLOCK_CONTROL=y

# Main Stack Size
CONFIG_MAIN_STACK_SIZE=2048
+0 −3
Original line number Diff line number Diff line
@@ -22,8 +22,5 @@ CONFIG_GPIO=y
# Enable clock controller
CONFIG_CLOCK_CONTROL=y

# Main Stack Size
CONFIG_MAIN_STACK_SIZE=2048

# Add catcm0p sleep images for CM0 Devices
CONFIG_SOC_PSOC6_CM0P_IMAGE_SLEEP=y
+0 −3
Original line number Diff line number Diff line
@@ -20,8 +20,5 @@ CONFIG_GPIO=y
# Enable clock controller
CONFIG_CLOCK_CONTROL=y

# Main Stack Size
CONFIG_MAIN_STACK_SIZE=2048

# Enable code/data relocation to move SMIF driver into RAM
CONFIG_CODE_DATA_RELOCATION=y
+3 −0
Original line number Diff line number Diff line
@@ -13,6 +13,9 @@ config NUM_IRQS
config SYS_CLOCK_HW_CYCLES_PER_SEC
	default 100000000

config MAIN_STACK_SIZE
	default 2048

# add additional die specific params

endif # SOC_DIE_PSOC6_01
+3 −0
Original line number Diff line number Diff line
@@ -16,6 +16,9 @@ config SYS_CLOCK_HW_CYCLES_PER_SEC
config BUILD_OUTPUT_HEX
	default y

config MAIN_STACK_SIZE
	default 2048

# add additional die specific params

endif # SOC_DIE_PSOC6_02
Loading