Explorar el Código

qcacmn: Add logs for radar detected frequencies

Add channel number along with their frequency information
to display channels affected by radar.

Change-Id: Iedc489c5f23d95f13e32affa2aa200b55a77e5eb
CRs-Fixed: 2482303
Shaakir Mohamed hace 5 años
padre
commit
41a3ccfff2
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. 3 2
      umac/dfs/core/src/misc/dfs_process_radar_found_ind.c

+ 3 - 2
umac/dfs/core/src/misc/dfs_process_radar_found_ind.c

@@ -193,8 +193,9 @@ static QDF_STATUS dfs_radar_add_channel_list_to_nol(struct wlan_dfs *dfs,
 					(uint16_t)
 					utils_dfs_chan_to_freq(channels[i]),
 					WLAN_EV_NOL_STARTED);
-		dfs_info(dfs, WLAN_DEBUG_DFS_NOL, "ch=%d Added to NOL",
-			 last_chan);
+		dfs_info(dfs, WLAN_DEBUG_DFS_NOL, "ch=%d Added to NOL, freq= %hu",
+			 last_chan,
+			 (uint16_t)utils_dfs_chan_to_freq(last_chan));
 	}
 
 	if (!num_ch) {