wlan: Initialize driver in STA mode during SSR

WLAN driver should always be intialized in STA mode after SSR. Just
like the way the driver is initialized during module init, the
initialization after SSR should happen in the default mode.

Change-Id: Ib5360c772815ba4a5d9d991ca59b6210f0f0abfa
CRs-Fixed: 443855
diff --git a/CORE/HDD/src/wlan_hdd_early_suspend.c b/CORE/HDD/src/wlan_hdd_early_suspend.c
index 35616ad..534d253 100644
--- a/CORE/HDD/src/wlan_hdd_early_suspend.c
+++ b/CORE/HDD/src/wlan_hdd_early_suspend.c
@@ -2110,6 +2110,10 @@
 
    hdd_ssr_timer_del();
    hdd_prevent_suspend();
+
+   /* The driver should always be initialized in STA mode after SSR */
+   hdd_set_conparam(0);
+
    /* Re-open VOSS, it is a re-open b'se control transport was never closed. */
    vosStatus = vos_open(&pVosContext, 0);
    if (!VOS_IS_STATUS_SUCCESS(vosStatus))