From 513ce10da86a35a2654212c082d4e29befdb9327 Mon Sep 17 00:00:00 2001 From: David Leach Date: Mon, 13 Nov 2017 14:51:59 -0600 Subject: [PATCH] cmake: Fix build of entropy driver for MCUX TRNG Signed-off-by: David Leach --- drivers/entropy/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/entropy/CMakeLists.txt b/drivers/entropy/CMakeLists.txt index 50654095abc..23e44fd7fb1 100644 --- a/drivers/entropy/CMakeLists.txt +++ b/drivers/entropy/CMakeLists.txt @@ -1,5 +1,5 @@ zephyr_sources_ifdef(CONFIG_ENTROPY_ESP32_RNG entropy_esp32.c) zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_RNGA entropy_mcux_rnga.c) -zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_TNGA entropy_mcux_trng.c) +zephyr_sources_ifdef(CONFIG_ENTROPY_MCUX_TRNG entropy_mcux_trng.c) zephyr_sources_ifdef(CONFIG_ENTROPY_STM32_RNG entropy_stm32_rng.c) zephyr_sources_ifdef(CONFIG_USERSPACE entropy_handlers.c)