staging: vt6655: fix camelcase in bRadioOff
Replace camel case variable bRadioOff with snake case variable radio_off. Drop Hungarian notation prefix in `bRadioOff` variable. Change it to use snake case. Signed-off-by: Tommaso Merciai <tomm.merciai@gmail.com> Link: https://lore.kernel.org/r/20211113102126.82904-1-tomm.merciai@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
74b1dc3630
commit
fca00dc456
|
@ -404,7 +404,7 @@ bool CARDbSetBeaconPeriod(struct vnt_private *priv,
|
|||
*/
|
||||
void CARDbRadioPowerOff(struct vnt_private *priv)
|
||||
{
|
||||
if (priv->bRadioOff)
|
||||
if (priv->radio_off)
|
||||
return;
|
||||
|
||||
switch (priv->byRFType) {
|
||||
|
@ -429,7 +429,7 @@ void CARDbRadioPowerOff(struct vnt_private *priv)
|
|||
|
||||
bb_set_deep_sleep(priv, priv->local_id);
|
||||
|
||||
priv->bRadioOff = true;
|
||||
priv->radio_off = true;
|
||||
pr_debug("chester power off\n");
|
||||
MACvRegBitsOn(priv->port_offset, MAC_REG_GPIOCTL0,
|
||||
LED_ACTSET); /* LED issue */
|
||||
|
|
|
@ -221,7 +221,7 @@ struct vnt_private {
|
|||
bool bBarkerPreambleMd;
|
||||
|
||||
bool bRadioControlOff;
|
||||
bool bRadioOff;
|
||||
bool radio_off;
|
||||
bool bEnablePSMode;
|
||||
unsigned short wListenInterval;
|
||||
bool bPWBitOn;
|
||||
|
|
|
@ -369,7 +369,7 @@ static void device_init_registers(struct vnt_private *priv)
|
|||
/* Set Short Slot Time, xIFS, and RSPINF. */
|
||||
priv->wCurrentRate = RATE_54M;
|
||||
|
||||
priv->bRadioOff = false;
|
||||
priv->radio_off = false;
|
||||
|
||||
priv->byRadioCtl = SROMbyReadEmbedded(priv->port_offset,
|
||||
EEP_OFS_RADIOCTL);
|
||||
|
|
Loading…
Reference in New Issue