staging: vt6655: Rename variable bUpdateBBVGA
authorGilbert Adikankwu <gilbertadikankwu@gmail.com>
Mon, 16 Oct 2023 22:58:54 +0000 (23:58 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 17 Oct 2023 13:40:16 +0000 (15:40 +0200)
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@gmail.com>
Link: https://lore.kernel.org/r/9bd935c464671db2654c654964812cc48f4603d3.1697495598.git.gilbertadikankwu@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/baseband.c
drivers/staging/vt6655/channel.c
drivers/staging/vt6655/device.h
drivers/staging/vt6655/device_main.c

index 7d47b26..f782439 100644 (file)
@@ -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;
        }
 
index 6ac7d47..c11bc2d 100644 (file)
@@ -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];
 
index 68bfada..b166d29 100644 (file)
@@ -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;
index b08fcf7..b654fc2 100644 (file)
@@ -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)