From 34849b242407f9339f04949d67453d5bc559394d Mon Sep 17 00:00:00 2001 From: Gil Pitney Date: Mon, 14 Nov 2016 19:48:35 -0800 Subject: [PATCH] cc3200: Remove CPU_HAS_FPU from cc3200 Kconfig.soc Though Cortex-M4 could optionally have a floating point unit, the MCU in the cc3200 in fact does not have an FPU. Enabling CPU_HAS_FPU caused applications built with CONFIG_FLOAT=y to crash during an early call to enable_floating_point(). This patch was validated by running microPython, which is one such application. Change-Id: I8bfd42c456524e152cbbb983001d9540d93fbe98 Signed-off-by: Gil Pitney --- arch/arm/soc/ti_simplelink/cc32xx/Kconfig.soc | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/soc/ti_simplelink/cc32xx/Kconfig.soc b/arch/arm/soc/ti_simplelink/cc32xx/Kconfig.soc index 28332c99a76..6424fd622ec 100644 --- a/arch/arm/soc/ti_simplelink/cc32xx/Kconfig.soc +++ b/arch/arm/soc/ti_simplelink/cc32xx/Kconfig.soc @@ -7,7 +7,6 @@ depends on SOC_SERIES_CC32XX config SOC_CC3200 bool "CC3200" - select CPU_HAS_FPU select HAS_CC3200SDK endchoice