Преглед на файлове

qcacmn: Fix handler to fetch the eht support capability

Update the handler to fetch the status of the supports_11be
capability flag properly.

CRs-Fixed: 3305253
Change-Id: I35a083b7b717b0cf4fbe40e2e00b8bfd0ada9082
Adwait Nayak преди 2 години
родител
ревизия
b9962b51e8
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      umac/scan/dispatcher/src/wlan_scan_utils_api.c

+ 1 - 1
umac/scan/dispatcher/src/wlan_scan_utils_api.c

@@ -3669,7 +3669,7 @@ util_scan_is_platform_eht_capable(struct wlan_objmgr_pdev *pdev)
 	pdev_id = wlan_objmgr_pdev_get_pdev_id(pdev);
 
 	if (scan_ops->is_platform_eht_capable)
-		return scan_ops->is_platform_eht_capable;
+		return scan_ops->is_platform_eht_capable(psoc, pdev_id);
 
 	return false;
 }