|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* Copyright (c) 2012-2021 The Linux Foundation. All rights reserved.
|
|
|
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
+ * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
*
|
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -886,8 +886,13 @@ static __iw_softap_setparam(struct net_device *dev,
|
|
|
}
|
|
|
|
|
|
qdf_mem_zero(&radar, sizeof(radar));
|
|
|
- if (policy_mgr_get_dfs_beaconing_session_id(hdd_ctx->psoc) !=
|
|
|
- WLAN_UMAC_VDEV_ID_MAX)
|
|
|
+ if (wlansap_is_channel_in_nol_list(ap_ctx->sap_context,
|
|
|
+ ap_ctx->operating_chan_freq,
|
|
|
+ PHY_SINGLE_CHANNEL_CENTERED))
|
|
|
+ hdd_debug("Ignore set radar, op ch_freq(%d) is in nol",
|
|
|
+ ap_ctx->operating_chan_freq);
|
|
|
+ else if (WLAN_UMAC_VDEV_ID_MAX !=
|
|
|
+ policy_mgr_get_dfs_beaconing_session_id(hdd_ctx->psoc))
|
|
|
tgt_dfs_process_radar_ind(pdev, &radar);
|
|
|
else
|
|
|
hdd_debug("Ignore set radar, op ch_freq(%d) is not dfs",
|