staging: rtl8192e: rename shortData to short_data in delba_param_set union

Fixes a checkpatch CHECK message.

Signed-off-by: William Durand <will+git@drnd.me>
Link: https://lore.kernel.org/r/20210219161400.29316-3-will+git@drnd.me
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
William Durand
2021-02-19 16:13:57 +00:00
committed by Greg Kroah-Hartman
parent ca3301b85d
commit d6afdc5361
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -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);