staging: rtl8192e: renamed variable HTIOTActIsCCDFsync
authorGary Rookard <garyrookard@fastmail.org>
Fri, 8 Dec 2023 01:55:35 +0000 (20:55 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 9 Dec 2023 14:07:18 +0000 (15:07 +0100)
Coding style issue, checkpatch Avoid CamelCase,
rename it. HTIOTActIsCCDFsync -> ht_iot_act_is_ccd_fsync

Signed-off-by: Gary Rookard <garyrookard@fastmail.org>
Link: https://lore.kernel.org/r/20231208015536.21013-5-garyrookard@fastmail.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl819x_HTProc.c

index 73c0204303ec62d5358e5ae6556a8a515080e007..5486b1ab4b5afc64688871894513bee861085be9 100644 (file)
@@ -218,7 +218,7 @@ static u8 ht_iot_act_is_mgnt_use_cck_6m(struct rtllib_device *ieee,
        return retValue;
 }
 
-static u8 HTIOTActIsCCDFsync(struct rtllib_device *ieee)
+static u8 ht_iot_act_is_ccd_fsync(struct rtllib_device *ieee)
 {
        u8      retValue = 0;
 
@@ -662,7 +662,7 @@ void HTResetSelfAndSavePeerSetting(struct rtllib_device *ieee,
                bIOTAction = ht_iot_act_is_mgnt_use_cck_6m(ieee, pNetwork);
                if (bIOTAction)
                        ht_info->iot_action |= HT_IOT_ACT_MGNT_USE_CCK_6M;
-               bIOTAction = HTIOTActIsCCDFsync(ieee);
+               bIOTAction = ht_iot_act_is_ccd_fsync(ieee);
                if (bIOTAction)
                        ht_info->iot_action |= HT_IOT_ACT_CDD_FSYNC;
        } else {