From 74cefe0765fbb68b66c42c7d7f38978547b3b9c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=BCller?= Date: Tue, 7 May 2024 12:16:11 +0200 Subject: [PATCH] Bluetooth: Host: Add missing include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The include of hci_types_host_extensions.h was removed by mistake. Adding it back. Signed-off-by: Jan Müller --- subsys/bluetooth/host_extensions/host_extensions.c | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/bluetooth/host_extensions/host_extensions.c b/subsys/bluetooth/host_extensions/host_extensions.c index c62742cb5e7..fa39812d633 100644 --- a/subsys/bluetooth/host_extensions/host_extensions.c +++ b/subsys/bluetooth/host_extensions/host_extensions.c @@ -20,6 +20,7 @@ #include #endif /* CONFIG_BT_LL_SOFTDEVICE */ +#include "hci_types_host_extensions.h" #include #if defined(CONFIG_BT_TRANSMIT_POWER_CONTROL)