]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging:rtl8192u: Refactor BA_PARAM_SET - Style
authorJohn Whitmore <johnfwhitmore@gmail.com>
Tue, 21 Aug 2018 17:15:25 +0000 (18:15 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Aug 2018 17:24:30 +0000 (19:24 +0200)
Refactor the union BA_PARAM_SET, firstly removing the 'typedef', this
clears the checkpatch issue with defining new types. Secondly the union
is renamed to lowercase to comply with the coding standard.

These are coding style changes which should have no impact on runtime
code execution.

Signed-off-by: John Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/ieee80211/rtl819x_BA.h
drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.c

index 6bbabd9e6562754876631aea732b3a5e64258c96..44f82040434771b2f52a3c6ec9db02e275c23535 100644 (file)
@@ -30,7 +30,7 @@ union sequence_control {
        } field;
 };
 
-typedef union _BA_PARAM_SET {
+union ba_param_set {
        u8 charData[2];
        u16 shortData;
        struct {
@@ -39,7 +39,7 @@ typedef union _BA_PARAM_SET {
                u16 TID:4;
                u16 BufferSize:10;
        } field;
-} BA_PARAM_SET, *PBA_PARAM_SET;
+};
 
 typedef union _DELBA_PARAM_SET {
        u8 charData[2];
@@ -55,7 +55,7 @@ typedef struct _BA_RECORD {
        struct timer_list               Timer;
        u8                              bValid;
        u8                              DialogToken;
-       BA_PARAM_SET            BaParamSet;
+       union ba_param_set              BaParamSet;
        u16                             BaTimeoutValue;
        union sequence_control  BaStartSeqCtrl;
 } BA_RECORD, *PBA_RECORD;
index 643fd891f47648466e64aa462ae1fcefe68dbb04..469e3e9a0d2e68c5187dacbce3b10e0811642efa 100644 (file)
@@ -322,7 +322,7 @@ int ieee80211_rx_ADDBAReq(struct ieee80211_device *ieee, struct sk_buff *skb)
        u16 rc = 0;
        u8 *dst = NULL, *pDialogToken = NULL, *tag = NULL;
        PBA_RECORD pBA = NULL;
-       PBA_PARAM_SET   pBaParamSet = NULL;
+       union ba_param_set     *pBaParamSet = NULL;
        u16 *pBaTimeoutVal = NULL;
        union sequence_control *pBaStartSeqCtrl = NULL;
        struct rx_ts_record  *pTS = NULL;
@@ -342,7 +342,7 @@ int ieee80211_rx_ADDBAReq(struct ieee80211_device *ieee, struct sk_buff *skb)
        dst = &req->addr2[0];
        tag += sizeof(struct rtl_80211_hdr_3addr);
        pDialogToken = tag + 2;  //category+action
-       pBaParamSet = (PBA_PARAM_SET)(tag + 3);   //+DialogToken
+       pBaParamSet = (union ba_param_set *)(tag + 3);   //+DialogToken
        pBaTimeoutVal = (u16 *)(tag + 5);
        pBaStartSeqCtrl = (union sequence_control *)(req + 7);
 
@@ -423,7 +423,7 @@ int ieee80211_rx_ADDBARsp(struct ieee80211_device *ieee, struct sk_buff *skb)
        struct tx_ts_record     *pTS = NULL;
        u8 *dst = NULL, *pDialogToken = NULL, *tag = NULL;
        u16 *pStatusCode = NULL, *pBaTimeoutVal = NULL;
-       PBA_PARAM_SET           pBaParamSet = NULL;
+       union ba_param_set       *pBaParamSet = NULL;
        u16                     ReasonCode;
 
        if (skb->len < sizeof(struct rtl_80211_hdr_3addr) + 9) {
@@ -439,7 +439,7 @@ int ieee80211_rx_ADDBARsp(struct ieee80211_device *ieee, struct sk_buff *skb)
        tag += sizeof(struct rtl_80211_hdr_3addr);
        pDialogToken = tag + 2;
        pStatusCode = (u16 *)(tag + 3);
-       pBaParamSet = (PBA_PARAM_SET)(tag + 5);
+       pBaParamSet = (union ba_param_set *)(tag + 5);
        pBaTimeoutVal = (u16 *)(tag + 7);
 
        // Check the capability