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

staging: rtl8192e: rename shortData to short_data in delba_param_set union

Fixes a checkpatch CHECK message.
Signed-off-by: default avatarWilliam Durand <will+git@drnd.me>
Link: https://lore.kernel.org/r/20210219161400.29316-3-will+git@drnd.meSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ca3301b8
......@@ -40,7 +40,7 @@ union ba_param_set {
union delba_param_set {
u8 char_data[2];
u16 shortData;
u16 short_data;
struct {
u16 Reserved:11;
u16 Initiator:1;
......
......@@ -163,7 +163,7 @@ static struct sk_buff *rtllib_DELBA(struct rtllib_device *ieee, u8 *dst,
*tag++ = ACT_DELBA;
put_unaligned_le16(DelbaParamSet.shortData, tag);
put_unaligned_le16(DelbaParamSet.short_data, tag);
tag += 2;
put_unaligned_le16(ReasonCode, 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