From: Fabio Aiuto Date: Wed, 21 Jul 2021 13:37:09 +0000 (+0200) Subject: staging: rtl8723bs: fix camel case inside function X-Git-Tag: v5.15~425^2~429 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a0b06bff50f96b5436337e95a08d7f48564a4c0;p=platform%2Fkernel%2Flinux-starfive.git staging: rtl8723bs: fix camel case inside function fix camel case inside function Hal_GetChnlGroup8723B() Signed-off-by: Fabio Aiuto Link: https://lore.kernel.org/r/831b5f56cc6df8885ac61837fe53f63e021b289b.1626874164.git.fabioaiuto83@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c b/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c index bd0e9f0..246a536 100644 --- a/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c +++ b/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c @@ -2061,18 +2061,18 @@ s32 rtl8723b_InitLLTTable(struct adapter *padapter) return ret; } -static void Hal_GetChnlGroup8723B(u8 Channel, u8 *pGroup) -{ - if (1 <= Channel && Channel <= 2) - *pGroup = 0; - else if (3 <= Channel && Channel <= 5) - *pGroup = 1; - else if (6 <= Channel && Channel <= 8) - *pGroup = 2; - else if (9 <= Channel && Channel <= 11) - *pGroup = 3; - else if (12 <= Channel && Channel <= 14) - *pGroup = 4; +static void Hal_GetChnlGroup8723B(u8 channel, u8 *group) +{ + if (1 <= channel && channel <= 2) + *group = 0; + else if (3 <= channel && channel <= 5) + *group = 1; + else if (6 <= channel && channel <= 8) + *group = 2; + else if (9 <= channel && channel <= 11) + *group = 3; + else if (12 <= channel && channel <= 14) + *group = 4; } void Hal_InitPGData(struct adapter *padapter, u8 *PROMContent)