diff options
author | Michael Straube <[email protected]> | 2021-08-13 09:31:09 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2021-08-16 09:08:11 +0200 |
commit | 40ba17da86cb9ed6ec1457bd05db77df94d09c96 (patch) | |
tree | 4933b8a6ab3dd8bcc6e8bd0d34a4ed653d261acd | |
parent | 16fe4b303e226739787ee206437bf42b4caf82fe (diff) |
staging: r8188eu: rename Hal_GetChnlGroup88E()
Rename Hal_GetChnlGroup88E() to avoid camel case.
HalGetChnlGroup88E -> hal_get_chnl_group_88e
Acked-by: Phillip Potter <[email protected]>
Acked-by: Martin Kaiser <[email protected]>
Signed-off-by: Michael Straube <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/r8188eu/hal/rtl8188e_hal_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/r8188eu/hal/rtl8188e_hal_init.c b/drivers/staging/r8188eu/hal/rtl8188e_hal_init.c index 07ba5f0eecc2..24a82fc41872 100644 --- a/drivers/staging/r8188eu/hal/rtl8188e_hal_init.c +++ b/drivers/staging/r8188eu/hal/rtl8188e_hal_init.c @@ -2060,7 +2060,7 @@ static void Hal_ReadPowerValueFromPROM_8188E(struct txpowerinfo24g *pwrInfo24G, } } -static void Hal_GetChnlGroup88E(u8 chnl, u8 *group) +static void hal_get_chnl_group_88e(u8 chnl, u8 *group) { if (chnl < 3) /* Channel 1-2 */ *group = 0; @@ -2114,7 +2114,7 @@ void Hal_ReadTxPowerInfo88E(struct adapter *padapter, u8 *PROMContent, bool Auto for (rfPath = 0; rfPath < pHalData->NumTotalRFPath; rfPath++) { for (ch = 0; ch < CHANNEL_MAX_NUMBER; ch++) { - Hal_GetChnlGroup88E(ch, &group); + hal_get_chnl_group_88e(ch, &group); pHalData->Index24G_CCK_Base[rfPath][ch] = pwrInfo24G.IndexCCK_Base[rfPath][group]; if (ch == 14) |