|
@@ -3724,11 +3724,6 @@ hdd_adapter_t *hdd_open_adapter(hdd_context_t *hdd_ctx, uint8_t session_type,
|
|
|
|
|
|
adapter->device_mode = session_type;
|
|
|
|
|
|
- if (QDF_NDI_MODE == session_type) {
|
|
|
- status = hdd_init_nan_data_mode(adapter);
|
|
|
- if (QDF_STATUS_SUCCESS != status)
|
|
|
- goto err_free_netdev;
|
|
|
- }
|
|
|
|
|
|
/*
|
|
|
* Workqueue which gets scheduled in IPv4 notification
|
|
@@ -3756,8 +3751,15 @@ hdd_adapter_t *hdd_open_adapter(hdd_context_t *hdd_ctx, uint8_t session_type,
|
|
|
wlan_hdd_netif_queue_control(adapter,
|
|
|
WLAN_STOP_ALL_NETIF_QUEUE_N_CARRIER,
|
|
|
WLAN_CONTROL_PATH);
|
|
|
- break;
|
|
|
|
|
|
+ /* Initialize NAN Data Interface */
|
|
|
+ if (QDF_NDI_MODE == session_type) {
|
|
|
+ status = hdd_init_nan_data_mode(adapter);
|
|
|
+ if (QDF_STATUS_SUCCESS != status)
|
|
|
+ goto err_free_netdev;
|
|
|
+ }
|
|
|
+
|
|
|
+ break;
|
|
|
|
|
|
case QDF_P2P_GO_MODE:
|
|
|
case QDF_SAP_MODE:
|