Staging: rtl8192e: Rename variable pTSInfo
authorTree Davies <tdavies@darkphysics.net>
Tue, 3 Oct 2023 03:18:47 +0000 (20:18 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 5 Oct 2023 07:59:27 +0000 (09:59 +0200)
Rename variable pTSInfo to ts_info to fix checkpatch warning Avoid
CamelCase.

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

index a482acd5ee064ca408985806449f12e5ac6a3932..eaa2a82558f16d8f9c7fa9628d82fa834aa66659 100644 (file)
@@ -242,7 +242,7 @@ bool rtllib_get_ts(struct rtllib_device *ieee, struct ts_common_info **ppTS,
 {
        u8      UP = 0;
        union tspec_body TSpec;
-       union qos_tsinfo *pTSInfo = &TSpec.f.TSInfo;
+       union qos_tsinfo *ts_info = &TSpec.f.TSInfo;
        struct list_head *pUnusedList;
        struct list_head *pAddmitList;
        enum direction_value Dir;
@@ -318,15 +318,15 @@ bool rtllib_get_ts(struct rtllib_device *ieee, struct ts_common_info **ppTS,
                netdev_dbg(ieee->dev,
                           "to init current TS, UP:%d, Dir:%d, addr: %pM ppTs=%p\n",
                           UP, Dir, addr, *ppTS);
-               pTSInfo->field.ucTrafficType = 0;
-               pTSInfo->field.ucTSID = UP;
-               pTSInfo->field.ucDirection = Dir;
-               pTSInfo->field.ucAccessPolicy = 1;
-               pTSInfo->field.ucAggregation = 0;
-               pTSInfo->field.ucPSB = 0;
-               pTSInfo->field.ucUP = UP;
-               pTSInfo->field.ucTSInfoAckPolicy = 0;
-               pTSInfo->field.ucSchedule = 0;
+               ts_info->field.ucTrafficType = 0;
+               ts_info->field.ucTSID = UP;
+               ts_info->field.ucDirection = Dir;
+               ts_info->field.ucAccessPolicy = 1;
+               ts_info->field.ucAggregation = 0;
+               ts_info->field.ucPSB = 0;
+               ts_info->field.ucUP = UP;
+               ts_info->field.ucTSInfoAckPolicy = 0;
+               ts_info->field.ucSchedule = 0;
 
                MakeTSEntry(*ppTS, addr, &TSpec, NULL, 0, 0);
                list_add_tail(&((*ppTS)->List), pAddmitList);