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:
Tommaso Merciai 2021-11-13 11:21:20 +01:00 committed by Greg Kroah-Hartman
parent 74b1dc3630
commit fca00dc456
3 changed files with 4 additions and 4 deletions

View file

@ -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 */

View file

@ -221,7 +221,7 @@ struct vnt_private {
bool bBarkerPreambleMd;
bool bRadioControlOff;
bool bRadioOff;
bool radio_off;
bool bEnablePSMode;
unsigned short wListenInterval;
bool bPWBitOn;

View file

@ -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);