wlan: If host detects data stall, issue FW BMU dump command

If host side detects any data stall,
Or if user triggers transport dump command,
host issue BMU dump command to FW.
This will help to debug HW BMU status.

Change-Id: Ida4100e209e48f7d7b33b2a437a8e4acff463e32
CRs-fixed: 455364
diff --git a/CORE/HDD/src/wlan_hdd_wext.c b/CORE/HDD/src/wlan_hdd_wext.c
index 0f0ea5a..3b233bb 100644
--- a/CORE/HDD/src/wlan_hdd_wext.c
+++ b/CORE/HDD/src/wlan_hdd_wext.c
@@ -4347,12 +4347,14 @@
 
         case WE_ENABLE_DXE_STALL_DETECT:
         {
-            sme_transportDebug(VOS_FALSE, VOS_TRUE);
+            tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
+            sme_transportDebug(hHal, VOS_FALSE, VOS_TRUE);
             break;
         }
         case WE_DISPLAY_DXE_SNAP_SHOT:
         {
-            sme_transportDebug(VOS_TRUE, VOS_FALSE);
+            tHalHandle hHal = WLAN_HDD_GET_HAL_CTX(pAdapter);
+            sme_transportDebug(hHal, VOS_TRUE, VOS_FALSE);
             break;
         }
         case  WE_SET_REASSOC_TRIGGER: