Commit f0a8eb60 authored by Gary Rookard's avatar Gary Rookard Committed by Greg Kroah-Hartman

staging: rtl8192e: renamed variable HTMcsToDataRate

Renamed variable from Pascal/CamelCase to Snake case the variable
HTMcsToDataRate.
HTMcsToDataRate -> ht_mcs_to_data_rate

Linux Kernel coding style (cleanup), checkpatch Avoid CamelCase.
Driver/module rtl8192e compiles.
Signed-off-by: default avatarGary Rookard <garyrookard@fastmail.org>
Tested-by: default avatarPhilipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20231123144337.13112-2-garyrookard@fastmail.orgSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b43d958f
...@@ -103,7 +103,7 @@ void ht_update_default_setting(struct rtllib_device *ieee) ...@@ -103,7 +103,7 @@ void ht_update_default_setting(struct rtllib_device *ieee)
ht_info->rx_reorder_pending_time = 30; ht_info->rx_reorder_pending_time = 30;
} }
static u16 HTMcsToDataRate(struct rtllib_device *ieee, u8 nMcsRate) static u16 ht_mcs_to_data_rate(struct rtllib_device *ieee, u8 nMcsRate)
{ {
struct rt_hi_throughput *ht_info = ieee->ht_info; struct rt_hi_throughput *ht_info = ieee->ht_info;
...@@ -422,8 +422,8 @@ u8 HTGetHighestMCSRate(struct rtllib_device *ieee, u8 *pMCSRateSet, ...@@ -422,8 +422,8 @@ u8 HTGetHighestMCSRate(struct rtllib_device *ieee, u8 *pMCSRateSet,
bitMap = availableMcsRate[i]; bitMap = availableMcsRate[i];
for (j = 0; j < 8; j++) { for (j = 0; j < 8; j++) {
if ((bitMap % 2) != 0) { if ((bitMap % 2) != 0) {
if (HTMcsToDataRate(ieee, (8 * i + j)) > if (ht_mcs_to_data_rate(ieee, (8 * i + j)) >
HTMcsToDataRate(ieee, mcsRate)) ht_mcs_to_data_rate(ieee, mcsRate))
mcsRate = 8 * i + j; mcsRate = 8 * i + j;
} }
bitMap >>= 1; bitMap >>= 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment