On Tue, Oct 17, 2023 at 06:48:00AM +0200, Julia Lawall wrote: > > > On Mon, 16 Oct 2023, Gilbert Adikankwu wrote: > > > Remove bool Type encoding "b" from variable name and replace camelcase > > with snakecase. > > > > Mute checkpatch.pl error: > > > > CHECK: Avoid CamelCase: <bUpdateBBVGA> > > > > Signed-off-by: Gilbert Adikankwu <gilbertadikankwu@xxxxxxxxx> > > --- > > drivers/staging/vt6655/baseband.c | 2 +- > > drivers/staging/vt6655/channel.c | 2 +- > > drivers/staging/vt6655/device.h | 2 +- > > drivers/staging/vt6655/device_main.c | 6 +++--- > > 4 files changed, 6 insertions(+), 6 deletions(-) > > > > diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c > > index 7d47b266b87e..f7824396c5ff 100644 > > --- a/drivers/staging/vt6655/baseband.c > > +++ b/drivers/staging/vt6655/baseband.c > > @@ -2087,7 +2087,7 @@ bool bb_vt3253_init(struct vnt_private *priv) > > /* {{ RobertYu: 20050104 */ > > } else { > > /* No VGA Table now */ > > - priv->bUpdateBBVGA = false; > > + priv->update_bbvga = false; > > priv->bbvga[0] = 0x1C; > > I wonder about the name bbvga in the line above. Does the initial b mean > byte or is it a lowercase version of BBVGA? > > julia Hello, bbvga is lowercase version of BBGVA. It was added with this commit 11b896e65f4bff7e412b3abca366ea0bdadc8834 Thanks Gilbert > > > } > > > > diff --git a/drivers/staging/vt6655/channel.c b/drivers/staging/vt6655/channel.c > > index 6ac7d470c041..c11bc2dbc356 100644 > > --- a/drivers/staging/vt6655/channel.c > > +++ b/drivers/staging/vt6655/channel.c > > @@ -86,7 +86,7 @@ bool set_channel(struct vnt_private *priv, struct ieee80211_channel *ch) > > return ret; > > > > /* Set VGA to max sensitivity */ > > - if (priv->bUpdateBBVGA && > > + if (priv->update_bbvga && > > priv->bbvga_current != priv->bbvga[0]) { > > priv->bbvga_current = priv->bbvga[0]; > > > > diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h > > index 68bfadacfa7c..b166d296b82d 100644 > > --- a/drivers/staging/vt6655/device.h > > +++ b/drivers/staging/vt6655/device.h > > @@ -246,7 +246,7 @@ struct vnt_private { > > unsigned char byAutoFBCtrl; > > > > /* For Update BaseBand VGA Gain Offset */ > > - bool bUpdateBBVGA; > > + bool update_bbvga; > > unsigned int uBBVGADiffCount; > > unsigned char bbvga_new; > > unsigned char bbvga_current; > > diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c > > index b08fcf7e6edc..b654fc24d725 100644 > > --- a/drivers/staging/vt6655/device_main.c > > +++ b/drivers/staging/vt6655/device_main.c > > @@ -179,7 +179,7 @@ device_set_options(struct vnt_private *priv) > > priv->byBBType = priv->opts.bbp_type; > > priv->byPacketType = priv->byBBType; > > priv->byAutoFBCtrl = AUTO_FB_0; > > - priv->bUpdateBBVGA = true; > > + priv->update_bbvga = true; > > priv->preamble_type = 0; > > > > pr_debug(" byShortRetryLimit= %d\n", (int)priv->byShortRetryLimit); > > @@ -423,7 +423,7 @@ static void device_init_registers(struct vnt_private *priv) > > /* initialize BBP registers */ > > bb_vt3253_init(priv); > > > > - if (priv->bUpdateBBVGA) { > > + if (priv->update_bbvga) { > > priv->bbvga_current = priv->bbvga[0]; > > priv->bbvga_new = priv->bbvga_current; > > bb_set_vga_gain_offset(priv, priv->bbvga[0]); > > @@ -1040,7 +1040,7 @@ static void vnt_check_bb_vga(struct vnt_private *priv) > > long dbm; > > int i; > > > > - if (!priv->bUpdateBBVGA) > > + if (!priv->update_bbvga) > > return; > > > > if (priv->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL) > > -- > > 2.34.1 > > > > > >