|
@@ -892,20 +892,21 @@ static QDF_STATUS wmi_debugfs_init(wmi_unified_t wmi_handle)
|
|
|
*
|
|
|
* @wmi_handle: wmi handle
|
|
|
* @cmd: mgmt command
|
|
|
- * @type: 802.11 frame type
|
|
|
- * @subtype: 802.11 fram subtype
|
|
|
+ * @header: pointer to 802.11 header
|
|
|
* @vdev_id: vdev id
|
|
|
* @chanfreq: channel frequency
|
|
|
*
|
|
|
* Return: none
|
|
|
*/
|
|
|
void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, WMI_CMD_ID cmd,
|
|
|
- uint32_t type, uint32_t subtype,
|
|
|
- uint32_t vdev_id, uint32_t chanfreq)
|
|
|
+ void *header, uint32_t vdev_id, uint32_t chanfreq)
|
|
|
{
|
|
|
qdf_spin_lock_bh(&wmi_handle->log_info.wmi_record_lock);
|
|
|
|
|
|
- WMI_MGMT_COMMAND_RECORD(cmd, type, subtype, vdev_id, chanfreq);
|
|
|
+ WMI_MGMT_COMMAND_RECORD(cmd,
|
|
|
+ ((struct wmi_command_header *)header)->type,
|
|
|
+ ((struct wmi_command_header *)header)->sub_type,
|
|
|
+ vdev_id, chanfreq);
|
|
|
|
|
|
qdf_spin_unlock_bh(&wmi_handle->log_info.wmi_record_lock);
|
|
|
}
|
|
@@ -920,8 +921,7 @@ void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, WMI_CMD_ID cmd,
|
|
|
*/
|
|
|
static void wmi_debugfs_remove(wmi_unified_t wmi_handle) { }
|
|
|
void wmi_mgmt_cmd_record(wmi_unified_t wmi_handle, WMI_CMD_ID cmd,
|
|
|
- uint32_t type, uint32_t subtype,
|
|
|
- uint32_t vdev_id, uint32_t chanfreq) { }
|
|
|
+ void *header, uint32_t vdev_id, uint32_t chanfreq) { }
|
|
|
#endif /*WMI_INTERFACE_EVENT_LOGGING */
|
|
|
|
|
|
int wmi_get_host_credits(wmi_unified_t wmi_handle);
|