From 2f8a8f72ea2b3149ea484c78c0ee537fde75c1e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Duda?= Date: Tue, 24 Jun 2025 15:34:32 +0200 Subject: [PATCH] net: openthread: Add missing include for logging in diag.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds logging.h header to the diag.c file to ensure all symbols are declared. Signed-off-by: Ɓukasz Duda --- modules/openthread/platform/diag.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/openthread/platform/diag.c b/modules/openthread/platform/diag.c index 74781cad4a1..afa09c7e68d 100644 --- a/modules/openthread/platform/diag.c +++ b/modules/openthread/platform/diag.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include "platform-zephyr.h"