From 5e2d71315ea188a4a9baa10092bd5e2cac42018c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20J=C3=A4ger?= Date: Thu, 23 Mar 2023 11:51:20 +0100 Subject: [PATCH] drivers: dac: sam: add missing zephyr/kernel.h include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The missing include was detected when adding the driver to the CI build tests. Signed-off-by: Martin Jäger --- drivers/dac/dac_sam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dac/dac_sam.c b/drivers/dac/dac_sam.c index 724d10ba83..0fabbea287 100644 --- a/drivers/dac/dac_sam.c +++ b/drivers/dac/dac_sam.c @@ -20,7 +20,7 @@ #include #include #include - +#include #include #include LOG_MODULE_REGISTER(dac_sam, CONFIG_DAC_LOG_LEVEL);