|
@@ -7228,6 +7228,7 @@ QDF_STATUS hdd_stop_adapter(struct hdd_context *hdd_ctx,
|
|
|
|
|
|
case QDF_SAP_MODE:
|
|
|
wlan_hdd_scan_abort(adapter);
|
|
|
+ hdd_abort_ongoing_sta_connection(hdd_ctx);
|
|
|
/* Diassociate with all the peers before stop ap post */
|
|
|
if (test_bit(SOFTAP_BSS_STARTED, &adapter->event_flags)) {
|
|
|
if (wlan_hdd_del_station(adapter))
|
|
@@ -7274,8 +7275,10 @@ QDF_STATUS hdd_stop_adapter(struct hdd_context *hdd_ctx,
|
|
|
ACS_COMPLETE_TIMEOUT);
|
|
|
}
|
|
|
|
|
|
- if (adapter->device_mode == QDF_P2P_GO_MODE)
|
|
|
+ if (adapter->device_mode == QDF_P2P_GO_MODE) {
|
|
|
wlan_hdd_cleanup_remain_on_channel_ctx(adapter);
|
|
|
+ hdd_abort_ongoing_sta_connection(hdd_ctx);
|
|
|
+ }
|
|
|
|
|
|
hdd_deregister_hl_netdev_fc_timer(adapter);
|
|
|
hdd_deregister_tx_flow_control(adapter);
|