|
@@ -6026,34 +6026,23 @@ QDF_STATUS hdd_sme_close_session_callback(uint8_t vdev_id)
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
-int hdd_vdev_ready(struct hdd_adapter *adapter)
|
|
|
+int hdd_vdev_ready(struct wlan_objmgr_vdev *vdev)
|
|
|
{
|
|
|
- struct wlan_objmgr_vdev *vdev;
|
|
|
QDF_STATUS status;
|
|
|
|
|
|
- vdev = hdd_objmgr_get_vdev_by_user(adapter, WLAN_OSIF_POWER_ID);
|
|
|
- if (!vdev)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
status = pmo_vdev_ready(vdev);
|
|
|
- if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
- hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_POWER_ID);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
return qdf_status_to_os_return(status);
|
|
|
- }
|
|
|
|
|
|
status = ucfg_reg_11d_vdev_created_update(vdev);
|
|
|
- if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
- hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_POWER_ID);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
return qdf_status_to_os_return(status);
|
|
|
- }
|
|
|
|
|
|
if (wma_capability_enhanced_mcast_filter())
|
|
|
status = ucfg_pmo_enhanced_mc_filter_enable(vdev);
|
|
|
else
|
|
|
status = ucfg_pmo_enhanced_mc_filter_disable(vdev);
|
|
|
|
|
|
- hdd_objmgr_put_vdev_by_user(vdev, WLAN_OSIF_POWER_ID);
|
|
|
-
|
|
|
return qdf_status_to_os_return(status);
|
|
|
}
|
|
|
|
|
@@ -6329,7 +6318,7 @@ int hdd_vdev_create(struct hdd_adapter *adapter)
|
|
|
}
|
|
|
|
|
|
/* firmware ready for component communication, raise vdev_ready event */
|
|
|
- errno = hdd_vdev_ready(adapter);
|
|
|
+ errno = hdd_vdev_ready(vdev);
|
|
|
if (errno) {
|
|
|
hdd_err("failed to dispatch vdev ready event: %d", errno);
|
|
|
goto hdd_vdev_destroy_procedure;
|