wlan: Don't issue VOS_BUG when SSR is in progress

If driver post dump message to firmware and SSR has also started
in driver, firmware might not send response for dump command.
If firmware response doesn't come in 10 sec, driver issue VOS_BUG.
Fix this issue by not issuing VOS_BUG is SSR is already in progress.

Change-Id: I57fedee170727b011bd2e5daee35095f4fa77b29
CRs-Fixed: 1063426
diff --git a/CORE/WDA/src/wlan_qct_wda.c b/CORE/WDA/src/wlan_qct_wda.c
index cce34d5..7563dc0 100644
--- a/CORE/WDA/src/wlan_qct_wda.c
+++ b/CORE/WDA/src/wlan_qct_wda.c
@@ -13359,7 +13359,9 @@
             VOS_TRACE( VOS_MODULE_ID_VOSS, VOS_TRACE_LEVEL_ERROR,
             "%s: WDA_HALDUMP reporting  other error",__func__);
          }
-         VOS_BUG(0);
+         if (!(vos_isLoadUnloadInProgress() ||
+               vos_is_logp_in_progress(VOS_MODULE_ID_VOSS, NULL)))
+             VOS_BUG(0);
       }
    }
    return status;