From: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> nolibc support for x86 32-bit has been added in commit b7d8dd8bbf5b855 ("arch/x86/syscall: Add x86 32-bit native syscall support"). But I forgot to remove the comment that says "We can't use CONFIG_NOLIBC for x86 (32-bit)". Remove it. Signed-off-by: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> --- Hi Jens, Hopefully, this is the last x86 changes before v2.2 release. src/arch/x86/syscall.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/arch/x86/syscall.h b/src/arch/x86/syscall.h index 8cd24dd..43c576b 100644 --- a/src/arch/x86/syscall.h +++ b/src/arch/x86/syscall.h @@ -144,12 +144,6 @@ #else /* #if defined(__x86_64__) */ -/* - * For x86 (32-bit), fallback to libc wrapper. - * We can't use CONFIG_NOLIBC for x86 (32-bit) at the moment. - * - * TODO: Add x86 (32-bit) nolibc support. - */ #ifdef CONFIG_NOLIBC /** * Note for syscall registers usage (x86, 32-bit): -- Ammar Faizi