On Thu, Apr 08, 2021 at 10:07:14AM +0200, Fabio M. De Francesco wrote: > Remove camelcase in a symbol that is used by several files. What symbol? > --- a/drivers/staging/rtl8723bs/include/rtw_pwrctrl.h > +++ b/drivers/staging/rtl8723bs/include/rtw_pwrctrl.h > @@ -203,7 +203,7 @@ struct pwrctrl_priv { > u8 LpsIdleCount; > u8 power_mgnt; > u8 org_power_mgnt; > - u8 bFwCurrentInPSMode; > + u8 b_fw_current_in_ps_mode; The "b" here means "byte" so you can drop the "b_" as that means nothing, we do not use this type of notation in the kernel as the compiler can check it for us. thanks, greg k-h