提交 f1d34a01 编写于 作者: K Karthikeyan Periyasamy 提交者: Kalle Valo

ath11k: avoid WMM param truncation

In conf_tx() mac operation callback, we are truncating the tx
params cw_min and cw_max due to lower data type cast. so modified
the data type of cwmin and cwmax to avoid the trucation issue.
Signed-off-by: NKarthikeyan Periyasamy <periyasa@codeaurora.org>
Signed-off-by: NKalle Valo <kvalo@codeaurora.org>
上级 293cb583
......@@ -4501,8 +4501,8 @@ struct wmi_wmm_params {
struct wmi_wmm_params_arg {
u8 acm;
u8 aifs;
u8 cwmin;
u8 cwmax;
u16 cwmin;
u16 cwmax;
u16 txop;
u8 no_ack;
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册