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 <cfriedt@tenstorrent.com>
This commit is contained in:
Chris Friedt
2025-10-15 07:14:45 -04:00
committed by Johan Hedberg
parent 4b29d6d424
commit dd09402803

View File

@@ -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