diff options
| -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 |
