Skip to content

Commit

Permalink
nrf_wifi: Fix defined in monitor mode support
Browse files Browse the repository at this point in the history
In the monitor mode support defined is missing.
Add defined into condition.

Signed-off-by: Kapil Bhatt <[email protected]>
  • Loading branch information
kapbh committed Mar 12, 2024
1 parent 453e4b3 commit 18d4da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nrf_wifi/fw_if/umac_if/inc/fmac_api_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 18d4da9

Please sign in to comment.