Просмотр исходного кода

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 лет назад
Родитель
Сommit
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;
 }