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
This commit is contained in:
Adwait Nayak
2022-10-03 16:05:11 +05:30
committed by Madan Koyyalamudi
parent 75494853d0
commit b9962b51e8

View File

@@ -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;
}