From 4d68b1c3b2825f2e0d83a68e507aca4d3d707c52 Mon Sep 17 00:00:00 2001 From: Chaitanya Tata Date: Thu, 12 Dec 2024 13:39:36 +0530 Subject: [PATCH] radio_test: Fix the compilation warning Fix the header inclusion. Signed-off-by: Chaitanya Tata --- nrf70_bm_lib/include/nrf70_bm_core.h | 2 +- nrf70_bm_lib/source/nrf70_bm_core.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/nrf70_bm_lib/include/nrf70_bm_core.h b/nrf70_bm_lib/include/nrf70_bm_core.h index 35a70f2..427da7e 100644 --- a/nrf70_bm_lib/include/nrf70_bm_core.h +++ b/nrf70_bm_lib/include/nrf70_bm_core.h @@ -17,7 +17,7 @@ #include #include - +#include "nrf70_bm_lib.h" #include extern struct nrf70_wifi_drv_priv_bm nrf70_bm_priv; diff --git a/nrf70_bm_lib/source/nrf70_bm_core.c b/nrf70_bm_lib/source/nrf70_bm_core.c index 2b97cce..b36f1e7 100644 --- a/nrf70_bm_lib/source/nrf70_bm_core.c +++ b/nrf70_bm_lib/source/nrf70_bm_core.c @@ -7,7 +7,6 @@ /** @file * @brief nRF70 Bare Metal initialization. */ -#include "nrf70_bm_lib.h" #include "nrf70_bm_core.h" #include "util.h"