staging: rtl8192e: rename TID to tid in delba_param_set union
authorWilliam Durand <will+git@drnd.me>
Fri, 19 Feb 2021 16:14:00 +0000 (16:14 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 10 Mar 2021 08:25:27 +0000 (09:25 +0100)
This change uses lowercase for a field name to be more consistent with
the rest of the union.

Signed-off-by: William Durand <will+git@drnd.me>
Link: https://lore.kernel.org/r/20210219161400.29316-6-will+git@drnd.me
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl819x_BA.h
drivers/staging/rtl8192e/rtl819x_BAProc.c

index f94ce2d7d16631a02afbbfcbb3d65a61e852dd8a..67574e26cdfce76595589c7c53079aa5e4c3266f 100644 (file)
@@ -44,7 +44,7 @@ union delba_param_set {
        struct {
                u16 reserved:11;
                u16 initiator:1;
-               u16 TID:4;
+               u16 tid:4;
        } field;
 };
 
index 3594d432b2a256dc163624c86979f43813a8ad78..3455fd2103723a3ab76d14b9a39adcb0b9628541 100644 (file)
@@ -142,7 +142,7 @@ static struct sk_buff *rtllib_DELBA(struct rtllib_device *ieee, u8 *dst,
        memset(&DelbaParamSet, 0, 2);
 
        DelbaParamSet.field.initiator = (TxRxSelect == TX_DIR) ? 1 : 0;
-       DelbaParamSet.field.TID = pBA->BaParamSet.field.tid;
+       DelbaParamSet.field.tid = pBA->BaParamSet.field.tid;
 
        skb = dev_alloc_skb(len + sizeof(struct rtllib_hdr_3addr));
        if (!skb)
@@ -444,11 +444,11 @@ int rtllib_rx_DELBA(struct rtllib_device *ieee, struct sk_buff *skb)
                struct rx_ts_record *pRxTs;
 
                if (!GetTs(ieee, (struct ts_common_info **)&pRxTs, dst,
-                   (u8)pDelBaParamSet->field.TID, RX_DIR, false)) {
+                   (u8)pDelBaParamSet->field.tid, RX_DIR, false)) {
                        netdev_warn(ieee->dev,
                                    "%s(): can't get TS for RXTS. dst:%pM TID:%d\n",
                                    __func__, dst,
-                                   (u8)pDelBaParamSet->field.TID);
+                                   (u8)pDelBaParamSet->field.tid);
                        return -1;
                }
 
@@ -457,7 +457,7 @@ int rtllib_rx_DELBA(struct rtllib_device *ieee, struct sk_buff *skb)
                struct tx_ts_record *pTxTs;
 
                if (!GetTs(ieee, (struct ts_common_info **)&pTxTs, dst,
-                          (u8)pDelBaParamSet->field.TID, TX_DIR, false)) {
+                          (u8)pDelBaParamSet->field.tid, TX_DIR, false)) {
                        netdev_warn(ieee->dev, "%s(): can't get TS for TXTS\n",
                                    __func__);
                        return -1;