wlan: Send deauth and disassoc frames using wq5

To ensure that disassoc and deauth frames are transmitted
without fail, driver will send these frames over wq5, so that
firmware will ensure to send these frames even
though DEL_STA is sent immediately. And diver need not wait
for an ack from firmware since it is sure these frames
will be transmitted.
Hence a new flag FW_IN_TX_PATH is introduced in driver, which
when enabled will ensure that the frames are sent over wq5.

Change-Id: Ie5f523c3bce817b3e1afb80b8dfae12afcc790ab
CRs-Fixed: 567858
diff --git a/CORE/MAC/src/include/sirParams.h b/CORE/MAC/src/include/sirParams.h
index ff7ddea..3d7c2ad 100644
--- a/CORE/MAC/src/include/sirParams.h
+++ b/CORE/MAC/src/include/sirParams.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -39,19 +39,6 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/*
- * Airgo Networks, Inc proprietary. All rights reserved.
- * This file sirParams.h contains the common parameter definitions, which
- * are not dependent on threadX API. These can be used by all Firmware
- * modules.
- *
- * Author:      Sandesh Goel
- * Date:        04/13/2002
- * History:-
- * Date            Modified by    Modification Information
- * --------------------------------------------------------------------
- */
-
 #ifndef __SIRPARAMS_H
 #define __SIRPARAMS_H
 
@@ -108,6 +95,7 @@
 #ifdef FEATURE_WLAN_BATCH_SCAN
    BATCH_SCAN = 30,
 #endif
+   FW_IN_TX_PATH = 31,
 
    //MAX_FEATURE_SUPPORTED = 128
 } placeHolderInCapBitmap;