diff options
| author | Visweswara Tanuku <vtanuku@codeaurora.org> | 2018-09-18 17:40:56 +0530 |
|---|---|---|
| committer | Visweswara Tanuku <vtanuku@codeaurora.org> | 2018-09-18 17:42:21 +0530 |
| commit | 40e8e81bc77f9e663fbd7f0e5b09481e3448e445 (patch) | |
| tree | 0cd03084c62b005e69cfc2a0ce442ddbee907a51 | |
| parent | 25e2da34030cf8401e4487b94124baed9d36be0c (diff) | |
qcacld-2.0: CL 4867158 - Update fw common interface files
WMI: comments for using wmi_mgmt_tx_send_cmd buf by copy
CRs-fixed: 865207
Change-Id: Iff5a4394cf9059755862f49ee7c30154d9e2ec11
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 8 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 73c331962380..2bff23f1113b 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -4176,6 +4176,14 @@ typedef struct { A_UINT32 vdev_id; A_UINT32 desc_id; /* echoed in tx_compl_event */ A_UINT32 chanfreq; /* MHz units */ + /* WMI_MGMT_TX_SEND_CMDID is used for both pass by value and + * pass by reference WMI management frames. + * + * a) If the command is for pass by reference, + * paddr_lo and padd_hi will hold the address of remote/host buffer + * b) If the command is for pass by value, + * paddr_lo and paddr_hi will be NULL. + */ A_UINT32 paddr_lo; A_UINT32 paddr_hi; A_UINT32 frame_len; diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index 32ccbfe7f1c3..7f80775e4427 100644 --- a/CORE/SERVICES/COMMON/wmi_version.h +++ b/CORE/SERVICES/COMMON/wmi_version.h @@ -36,7 +36,7 @@ #define __WMI_VER_MINOR_ 0 /** WMI revision number has to be incremented when there is a * change that may or may not break compatibility. */ -#define __WMI_REVISION_ 551 +#define __WMI_REVISION_ 552 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
