staging: vt6655: refactor camelcase byMaxPwrLevel to max_pwr_level
Replace hungarian notated variable "byMaxPwrLevel" with "max_pwr_level" compliant with linux kernel coding style. Signed-off-by: Alberto Merciai <alb3rt0.m3rciai@gmail.com> Link: https://lore.kernel.org/r/20211119081656.GA12982@alb3rt0-VirtualBox Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9e861d3f4d
commit
6d7cf74400
@ -157,7 +157,7 @@ struct vnt_private {
|
||||
unsigned char local_id;
|
||||
unsigned char byRFType;
|
||||
|
||||
unsigned char byMaxPwrLevel;
|
||||
unsigned char max_pwr_level;
|
||||
unsigned char byZoneType;
|
||||
bool bZoneRegExist;
|
||||
unsigned char byOriginalZonetype;
|
||||
|
@ -609,11 +609,11 @@ bool RFbInit(struct vnt_private *priv)
|
||||
switch (priv->byRFType) {
|
||||
case RF_AIROHA:
|
||||
case RF_AL2230S:
|
||||
priv->byMaxPwrLevel = AL2230_PWR_IDX_LEN;
|
||||
priv->max_pwr_level = AL2230_PWR_IDX_LEN;
|
||||
ret = RFbAL2230Init(priv);
|
||||
break;
|
||||
case RF_AIROHA7230:
|
||||
priv->byMaxPwrLevel = AL7230_PWR_IDX_LEN;
|
||||
priv->max_pwr_level = AL7230_PWR_IDX_LEN;
|
||||
ret = s_bAL7230Init(priv);
|
||||
break;
|
||||
case RF_NOTHING:
|
||||
@ -778,8 +778,8 @@ bool RFbSetPower(struct vnt_private *priv, unsigned int rate, u16 uCH)
|
||||
else
|
||||
byDec = byPwr + 10;
|
||||
|
||||
if (byDec >= priv->byMaxPwrLevel)
|
||||
byDec = priv->byMaxPwrLevel - 1;
|
||||
if (byDec >= priv->max_pwr_level)
|
||||
byDec = priv->max_pwr_level - 1;
|
||||
|
||||
byPwr = byDec;
|
||||
break;
|
||||
@ -821,7 +821,7 @@ bool RFbRawSetPower(struct vnt_private *priv, unsigned char byPwr,
|
||||
bool ret = true;
|
||||
unsigned long dwMax7230Pwr = 0;
|
||||
|
||||
if (byPwr >= priv->byMaxPwrLevel)
|
||||
if (byPwr >= priv->max_pwr_level)
|
||||
return false;
|
||||
|
||||
switch (priv->byRFType) {
|
||||
|
Loading…
Reference in New Issue
Block a user