File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
drivers/nrf_wifi/fw_if/umac_if Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -131,13 +131,13 @@ struct nrf_wifi_fmac_callbk_fns {
131
131
unsigned int event_len ,
132
132
bool more_res );
133
133
134
- #if defined(CONFIG_WIFI_MGMT_RAW_SCAN_RESULTS ) || defined(__DOXYGEN__ )
134
+ #if defined(WIFI_MGMT_RAW_SCAN_RESULTS ) || defined(__DOXYGEN__ )
135
135
/** Callback function to be called when a beacon/probe response is received. */
136
136
void (* rx_bcn_prb_resp_callbk_fn )(void * os_vif_ctx ,
137
137
void * frm ,
138
138
unsigned short frequency ,
139
139
signed short signal );
140
- #endif /* CONFIG_WIFI_MGMT_RAW_SCAN_RESULTS */
140
+ #endif /* WIFI_MGMT_RAW_SCAN_RESULTS */
141
141
142
142
#if defined(NRF70_STA_MODE ) || defined(__DOXYGEN__ )
143
143
/** Callback function to be called when an interface association state changes. */
Original file line number Diff line number Diff line change @@ -353,13 +353,13 @@ enum nrf_wifi_status nrf_wifi_fmac_rx_event_process(struct nrf_wifi_fmac_dev_ctx
353
353
nwb );
354
354
#endif /* NRF70_STA_MODE */
355
355
} else if (config -> rx_pkt_type == NRF_WIFI_RX_PKT_BCN_PRB_RSP ) {
356
- #ifdef CONFIG_WIFI_MGMT_RAW_SCAN_RESULTS
356
+ #ifdef WIFI_MGMT_RAW_SCAN_RESULTS
357
357
def_priv -> callbk_fns .rx_bcn_prb_resp_callbk_fn (
358
358
vif_ctx -> os_vif_ctx ,
359
359
nwb ,
360
360
config -> frequency ,
361
361
config -> signal );
362
- #endif /* CONFIG_WIFI_MGMT_RAW_SCAN_RESULTS */
362
+ #endif /* WIFI_MGMT_RAW_SCAN_RESULTS */
363
363
nrf_wifi_osal_nbuf_free (nwb );
364
364
#ifdef NRF_WIFI_MGMT_BUFF_OFFLOAD
365
365
continue ;
You can’t perform that action at this time.
0 commit comments