summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGary Rookard <garyrookard@fastmail.org>2023-12-10 19:13:31 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-12-15 13:35:43 +0100
commit6bcb6ec33b1b680f14d91d11bd2a36bb6781465b (patch)
treea28a408eb473be59855f652192540fc7a14b1d1e
parent374d8bbd1445a827d029500e43d07c4492ec745b (diff)
downloadlinux-stable-6bcb6ec33b1b680f14d91d11bd2a36bb6781465b.tar.gz
linux-stable-6bcb6ec33b1b680f14d91d11bd2a36bb6781465b.tar.bz2
linux-stable-6bcb6ec33b1b680f14d91d11bd2a36bb6781465b.zip
staging: rtl8192e: rename variable HTIOTActDetermineRaFunc
Coding style issue, checkpatch Avoid CamelCase, rename it. HTIOTActDetermineRaFunc -> ht_iot_act_determine_ra_function Signed-off-by: Gary Rookard <garyrookard@fastmail.org> Link: https://lore.kernel.org/r/20231211001335.26169-2-garyrookard@fastmail.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/rtl8192e/rtl819x_HTProc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192e/rtl819x_HTProc.c b/drivers/staging/rtl8192e/rtl819x_HTProc.c
index 0474594a4b96..2d5976c1bade 100644
--- a/drivers/staging/rtl8192e/rtl819x_HTProc.c
+++ b/drivers/staging/rtl8192e/rtl819x_HTProc.c
@@ -217,7 +217,7 @@ static u8 ht_iot_act_is_ccd_fsync(struct rtllib_device *ieee)
return retValue;
}
-static void HTIOTActDetermineRaFunc(struct rtllib_device *ieee, bool bPeerRx2ss)
+static void ht_iot_act_determine_ra_func(struct rtllib_device *ieee, bool bPeerRx2ss)
{
struct rt_hi_throughput *ht_info = ieee->ht_info;
@@ -517,7 +517,7 @@ void HTOnAssocRsp(struct rtllib_device *ieee)
if (pPeerHTCap->MCS[0] == 0)
pPeerHTCap->MCS[0] = 0xff;
- HTIOTActDetermineRaFunc(ieee, ((pPeerHTCap->MCS[1]) != 0));
+ ht_iot_act_determine_ra_func(ieee, ((pPeerHTCap->MCS[1]) != 0));
HTFilterMCSRate(ieee, pPeerHTCap->MCS, ieee->dot11ht_oper_rate_set);