Browse Source

qca-wifi: CFR: Remove dp_handle references in CFR

This changes removes references to dp_handle in CFR component, to ensure
consistency with FR#56622.

Change-Id: I3539e958ed3fe4ef68f22adf473349b5639cb4b1
Padma Raghunathan 5 years ago
parent
commit
1a8dfb04ef
1 changed files with 3 additions and 2 deletions
  1. 3 2
      umac/cfr/dispatcher/src/wlan_cfr_ucfg_api.c

+ 3 - 2
umac/cfr/dispatcher/src/wlan_cfr_ucfg_api.c

@@ -887,8 +887,9 @@ void cfr_set_filter(struct wlan_objmgr_pdev *pdev,
 	cfr_info("pdev_id=%d\n", wlan_objmgr_pdev_get_pdev_id(pdev));
 
 	cdp_cfr_filter(wlan_psoc_get_dp_handle(psoc),
-		       wlan_pdev_get_dp_handle(pdev),
-		       enable, filter_val);
+		       wlan_objmgr_pdev_get_pdev_id(pdev),
+		       enable,
+		       filter_val);
 }
 
 static bool cfr_is_filter_enabled(struct cfr_rcc_param *rcc_param)