From fbd2d2f5577930e35a026f047d894a124851a339 Mon Sep 17 00:00:00 2001 From: Flavio Ceolin Date: Tue, 22 Jun 2021 17:58:11 -0700 Subject: [PATCH] drivers: ps2: Build syscall handlers syscall handler were not being built at all !! Signed-off-by: Flavio Ceolin --- drivers/ps2/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/ps2/CMakeLists.txt b/drivers/ps2/CMakeLists.txt index 3ed9cc7219f..fb0ec2f36cc 100644 --- a/drivers/ps2/CMakeLists.txt +++ b/drivers/ps2/CMakeLists.txt @@ -3,3 +3,4 @@ zephyr_library() zephyr_library_sources_ifdef(CONFIG_PS2_XEC ps2_mchp_xec.c) +zephyr_library_sources_ifdef(CONFIG_USERSPACE ps2_handlers.c)