wlan: Disable NSOffload on all slots during resume.

NSOffload is enabled on per slot basis for each IPv6 addresses
during suspend. During resume slot index 0 was the only slot
being disabled, which leaves other slot index still active in the
firmware. This use to filter out MC packets being received to the
host even when host is active/out of suspend.

To overcome this, NSOffload is being disabled on all slots during
resume.

Change-Id: I821bf2f93cfacef5b0bddef01b4014178e3abe4e
CRs-Fixed: 579662
diff --git a/CORE/HDD/src/wlan_hdd_early_suspend.c b/CORE/HDD/src/wlan_hdd_early_suspend.c
index fa98388..e71460f 100644
--- a/CORE/HDD/src/wlan_hdd_early_suspend.c
+++ b/CORE/HDD/src/wlan_hdd_early_suspend.c
@@ -771,21 +771,13 @@
         {
             offLoadRequest.nsOffloadInfo.slotIdx = i;
             if (eHAL_STATUS_SUCCESS !=
-                 sme_SetHostOffload(WLAN_HDD_GET_HAL_CTX(pAdapter),     
-                 pAdapter->sessionId, &offLoadRequest))         
+                 sme_SetHostOffload(WLAN_HDD_GET_HAL_CTX(pAdapter),
+                 pAdapter->sessionId, &offLoadRequest))
             {
                 hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failed to disable NSOflload"
                              " on slot %d"), i);
             }
         }
-
-        if (eHAL_STATUS_SUCCESS !=
-                 sme_SetHostOffload(WLAN_HDD_GET_HAL_CTX(pAdapter),
-                 pAdapter->sessionId, &offLoadRequest))
-        {
-            hddLog(VOS_TRACE_LEVEL_ERROR, FL("Failure to disable"
-                             "NSOffload feature"));
-        }
     }
     return;
 }