qcacmn: Add support for local packet capture stop

Add support for local packet capture stop.

Change-Id: Ib12574f5b418ea009ec35ef85e170bc8c592c86f
CRs-Fixed: 3415812
This commit is contained in:
Srinivas Girigowda
2022-12-15 17:16:34 -08:00
committed by Madan Koyyalamudi
부모 d52311a2b1
커밋 13554f0cdc
8개의 변경된 파일104개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@@ -994,6 +994,7 @@ struct cdp_me_ops {
* @txrx_cfr_filter: Handler to configure host rx monitor status ring
* @txrx_update_mon_mac_filter: Handler to configure mon mac filter
* @start_local_pkt_capture: start local packet capture
* @stop_local_pkt_capture: stop local packet capture
*/
struct cdp_mon_ops {
@@ -1106,6 +1107,9 @@ struct cdp_mon_ops {
QDF_STATUS (*start_local_pkt_capture)
(struct cdp_soc_t *soc, uint8_t pdev_id,
struct cdp_monitor_filter *filter);
QDF_STATUS (*stop_local_pkt_capture)(struct cdp_soc_t *soc,
uint8_t pdev_id);
#endif
};