mwifiex: convert to use le16_add_cpu()
Convert cpu_to_le16(le16_to_cpu(E1) + E2) to use le16_add_cpu(). dpatch engine is used to auto generate this patch. (https://github.com/weiyj/dpatch) Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
2db96c3d0a
commit
5570a914f2
1 changed files with 2 additions and 3 deletions
|
@ -614,9 +614,8 @@ mwifiex_scan_channel_list(struct mwifiex_private *priv,
|
|||
|
||||
/* Increment the TLV header length by the size
|
||||
appended */
|
||||
chan_tlv_out->header.len =
|
||||
cpu_to_le16(le16_to_cpu(chan_tlv_out->header.len) +
|
||||
(sizeof(chan_tlv_out->chan_scan_param)));
|
||||
le16_add_cpu(&chan_tlv_out->header.len,
|
||||
sizeof(chan_tlv_out->chan_scan_param));
|
||||
|
||||
/*
|
||||
* The tlv buffer length is set to the number of bytes
|
||||
|
|
Loading…
Reference in a new issue