staging: rtl8192e: rename ShortData to short_data in sequence_control union

Fixes a checkpatch CHECK message.

Signed-off-by: William Durand <will+git@drnd.me>
Link: https://lore.kernel.org/r/20210214140332.16175-2-will+git@drnd.me
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
William Durand
2021-02-14 14:03:30 +00:00
committed by Greg Kroah-Hartman
parent 29b205e72b
commit c3f1bca83e
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
#define DELBA_REASON_UNKNOWN_BA 38
#define DELBA_REASON_TIMEOUT 39
union sequence_control {
u16 ShortData;
u16 short_data;
struct {
u16 FragNum:4;
u16 SeqNum:12;

View File

@@ -61,7 +61,7 @@ void ResetBaEntry(struct ba_record *pBA)
pBA->BaParamSet.shortData = 0;
pBA->BaTimeoutValue = 0;
pBA->DialogToken = 0;
pBA->BaStartSeqCtrl.ShortData = 0;
pBA->BaStartSeqCtrl.short_data = 0;
}
static struct sk_buff *rtllib_ADDBA(struct rtllib_device *ieee, u8 *Dst,
struct ba_record *pBA,