qcacmn: Add changes to store monitor interface flags

Currently STA+Mon mode is not supported in LPC case
as both mode uses monitor interface to capture
packets. So to distinguish between two different
monitor modes add changes to store monitor interface flags

Change-Id: Ied43fa50adac200bed47a4044245baca4d6cc84f
CRs-Fixed: 3739291
This commit is contained in:
Amit Mehta
2024-02-22 10:50:19 +05:30
committed by Ravindra Konda
parent 6e6bab3a81
commit 0d61faf9e7
3 changed files with 10 additions and 0 deletions

View File

@@ -9163,6 +9163,10 @@ dp_set_psoc_param(struct cdp_soc_t *cdp_soc,
case CDP_CONFIG_DP_DEBUG_LOG:
soc->dp_debug_log_en = val.cdp_psoc_param_dp_debug_log;
break;
case CDP_MONITOR_FLAG:
soc->mon_flags = val.cdp_monitor_flag;
dp_info("monior interface flags: 0x%x", soc->mon_flags);
break;
default:
break;
}