From dd09402803b2ce6b25a76066b82288582f4e044c Mon Sep 17 00:00:00 2001 From: Chris Friedt Date: Wed, 15 Oct 2025 07:14:45 -0400 Subject: [PATCH] modules: simplelink: remove unneeded REQUIRES_FULL_LIBC I guess a very long time ago, before `stdint.h` was included in the minimal libc, the SimpleLink module required a full C library. It's definitely there now, so remove the stale comment and drop the unnecessary `select REQUIRES_FULL_LIBC`. Signed-off-by: Chris Friedt --- modules/Kconfig.simplelink | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/Kconfig.simplelink b/modules/Kconfig.simplelink index 70c990f411f..b2c11dca0b9 100644 --- a/modules/Kconfig.simplelink +++ b/modules/Kconfig.simplelink @@ -4,8 +4,6 @@ config HAS_CC3220SDK bool # Notes: -# SimpleLink drivers require types (stdint.h) from c library which is not -# provided by minimal lbc # Selecting ERRNO lets host driver use Zephyr's __errno # Selecting POSIX_SEMAPHORES, POSIX_THREADS, POSIX_TIMERS, and POSIX_SYSTEM_INTERFACES which are # needed to build the host driver @@ -13,7 +11,6 @@ config SIMPLELINK_HOST_DRIVER bool "Build the SimpleLink WiFi Host Driver" depends on HAS_CC3220SDK depends on MULTITHREADING - select REQUIRES_FULL_LIBC select ERRNO select POSIX_SYSTEM_INTERFACES select POSIX_SEMAPHORES