Commit 113030ce authored by William Durand's avatar William Durand Committed by Greg Kroah-Hartman

staging: rtl8192e: rename shortData to short_data in ba_param_set union

Fixes a checkpatch CHECK message.
Signed-off-by: default avatarWilliam Durand <will+git@drnd.me>
Link: https://lore.kernel.org/r/20210219101206.18036-3-will+git@drnd.meSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 424e6a16
......@@ -29,7 +29,7 @@ union sequence_control {
union ba_param_set {
u8 char_data[2];
u16 shortData;
u16 short_data;
struct {
u16 AMSDU_Support:1;
u16 BAPolicy:1;
......
......@@ -58,7 +58,7 @@ static u8 RxTsDeleteBA(struct rtllib_device *ieee, struct rx_ts_record *pRxTs)
void ResetBaEntry(struct ba_record *pBA)
{
pBA->bValid = false;
pBA->BaParamSet.shortData = 0;
pBA->BaParamSet.short_data = 0;
pBA->BaTimeoutValue = 0;
pBA->DialogToken = 0;
pBA->BaStartSeqCtrl.short_data = 0;
......@@ -107,7 +107,7 @@ static struct sk_buff *rtllib_ADDBA(struct rtllib_device *ieee, u8 *Dst,
tag += 2;
}
put_unaligned_le16(pBA->BaParamSet.shortData, tag);
put_unaligned_le16(pBA->BaParamSet.short_data, tag);
tag += 2;
put_unaligned_le16(pBA->BaTimeoutValue, tag);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment