From 18d4da9d9148d5167160841739901ad8ff6cb062 Mon Sep 17 00:00:00 2001 From: Kapil Bhatt Date: Tue, 5 Mar 2024 11:25:16 +0530 Subject: [PATCH] nrf_wifi: Fix defined in monitor mode support In the monitor mode support defined is missing. Add defined into condition. Signed-off-by: Kapil Bhatt --- nrf_wifi/fw_if/umac_if/inc/fmac_api_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nrf_wifi/fw_if/umac_if/inc/fmac_api_common.h b/nrf_wifi/fw_if/umac_if/inc/fmac_api_common.h index 9b86afbb71..ccce26e254 100644 --- a/nrf_wifi/fw_if/umac_if/inc/fmac_api_common.h +++ b/nrf_wifi/fw_if/umac_if/inc/fmac_api_common.h @@ -340,7 +340,7 @@ enum nrf_wifi_status nrf_wifi_fmac_set_channel(void *dev_ctx, #endif /* CONFIG_NRF700X_RAW_DATA_TX || CONFIG_NRF700X_RAW_DATA_RX */ -#if defined(CONFIG_NRF700X_RAW_DATA_RX) || (CONFIG_NRF700X_PROMISC_DATA_RX) +#if defined(CONFIG_NRF700X_RAW_DATA_RX) || defined(CONFIG_NRF700X_PROMISC_DATA_RX) /** * @brief Set packet filter settings * @param dev_ctx Pointer to the UMAC IF context for a RPU WLAN device.