Staging: rtl8192e: Rename array variable RxTsRecord
authorTree Davies <tdavies@darkphysics.net>
Sun, 17 Dec 2023 23:55:15 +0000 (15:55 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 18 Dec 2023 15:31:32 +0000 (16:31 +0100)
Rename array variable RxTsRecord to rx_ts_records to fix checkpatch
warning Avoid CamelCase.

Signed-off-by: Tree Davies <tdavies@darkphysics.net>
Link: https://lore.kernel.org/r/20231217235520.30377-2-tdavies@darkphysics.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl819x_BAProc.c
drivers/staging/rtl8192e/rtl819x_TSProc.c
drivers/staging/rtl8192e/rtllib.h

index 58a950ef77ce3975842af0903f0a9f4d45f959c7..401b9efb25aabf79e14b6f4939b7fc140d52edc6 100644 (file)
@@ -535,7 +535,7 @@ void rtllib_rx_ba_inact_timeout(struct timer_list *t)
        struct rx_ts_record *ts = from_timer(ts, t,
                                              rx_admitted_ba_record.timer);
        struct rtllib_device *ieee = container_of(ts, struct rtllib_device,
-                                    RxTsRecord[ts->num]);
+                                    rx_ts_records[ts->num]);
 
        rx_ts_delete_ba(ieee, ts);
        rtllib_send_DELBA(ieee, ts->ts_common_info.addr,
index 86db56f3900d36963b5d2f07fc568e528186b09f..8c7fe327ae1ef59613fdb3b57951a6e323a352e7 100644 (file)
@@ -12,7 +12,7 @@ static void RxPktPendingTimeout(struct timer_list *t)
 {
        struct rx_ts_record *ts = from_timer(ts, t, rx_pkt_pending_timer);
        struct rtllib_device *ieee = container_of(ts, struct rtllib_device,
-                                                 RxTsRecord[ts->num]);
+                                                 rx_ts_records[ts->num]);
 
        struct rx_reorder_entry *pReorderEntry = NULL;
 
@@ -120,7 +120,7 @@ static void ResetRxTsEntry(struct rx_ts_record *ts)
 void rtllib_ts_init(struct rtllib_device *ieee)
 {
        struct tx_ts_record *pTxTS  = ieee->TxTsRecord;
-       struct rx_ts_record *rxts  = ieee->RxTsRecord;
+       struct rx_ts_record *rxts  = ieee->rx_ts_records;
        struct rx_reorder_entry *pRxReorderEntry = ieee->RxReorderEntry;
        u8                              count = 0;
 
index 09360129d5788b3fcd601c6e5dd068b2c910f35e..343ea20c1aa45d74b9e3ca9f6f068b5b5212d066 100644 (file)
@@ -1229,7 +1229,7 @@ struct rtllib_device {
        struct list_head                Rx_TS_Admit_List;
        struct list_head                Rx_TS_Pending_List;
        struct list_head                Rx_TS_Unused_List;
-       struct rx_ts_record RxTsRecord[TOTAL_TS_NUM];
+       struct rx_ts_record rx_ts_records[TOTAL_TS_NUM];
        struct rx_reorder_entry RxReorderEntry[128];
        struct list_head                RxReorder_Unused_List;