diff options
| author | Rajeev Kumar <rajekuma@qca.qualcomm.com> | 2014-04-24 13:52:39 -0700 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-04-26 00:48:13 -0700 |
| commit | df0e9a41b9252cc2eac8f2a41a329ef2aaecbafe (patch) | |
| tree | 269521492ac7612dd425d9fdb10da558a5e878f6 | |
| parent | d0a296c5721c6b83303c714102a3690927fae3bb (diff) | |
qcacld: Store WLAN driver version in a global variable
Store WLAN driver version in a global variable for post
processing in crash analysis tools.
Change-Id: I8f5b87c0fae0c33e0cf5ca9f721108aef4427155
CRs-Fixed: 654888
| -rw-r--r-- | CORE/HDD/src/wlan_hdd_main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CORE/HDD/src/wlan_hdd_main.c b/CORE/HDD/src/wlan_hdd_main.c index 8a62d25b9ed0..772f6fecd04f 100644 --- a/CORE/HDD/src/wlan_hdd_main.c +++ b/CORE/HDD/src/wlan_hdd_main.c @@ -286,6 +286,11 @@ extern int hdd_ftm_stop(hdd_context_t *pHddCtx); v_VOID_t wlan_hdd_auto_shutdown_cb(v_PVOID_t data); #endif +/* Store WLAN driver version info in a global variable such that crash debugger + can extract it from driver debug symbol and crashdump for post processing */ +tANI_U8 g_wlan_driver_version[ ] = QWLAN_VERSIONSTR; + + #if defined(FEATURE_WLAN_ESE) && defined(FEATURE_WLAN_ESE_UPLOAD) VOS_STATUS hdd_parse_get_cckm_ie(tANI_U8 *pValue, tANI_U8 **pCckmIe, |
