staging: vt6655: Type encoding info dropped from variable name "byBBVGACurrent"
authorPavan Bobba <opensource206@gmail.com>
Sun, 8 Oct 2023 19:01:49 +0000 (00:31 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 15 Oct 2023 16:21:05 +0000 (18:21 +0200)
variable name "byBBVGACurrent" updated like below:

a.type encoding info dropped from name
b.camelcase name replaced by snakecase

Issue found by checkpatch

Signed-off-by: Pavan Bobba <opensource206@gmail.com>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/f0dfd4d2460f858540d465dd8bcfc920c219e94d.1696791459.git.opensource206@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 a19a75f5d7613c528d5c84328cb4fb1ac02bc3c7..7d47b266b87e312e777db2c5fdceaa19ab60bd40 100644 (file)
@@ -2146,7 +2146,7 @@ void bb_set_vga_gain_offset(struct vnt_private *priv, unsigned char by_data)
                by_bb_rx_conf &= 0xDF; /* 1101 1111 */
        else
                by_bb_rx_conf |= 0x20; /* 0010 0000 */
-       priv->byBBVGACurrent = by_data;
+       priv->bbvga_current = by_data;
        bb_write_embedded(priv, 0x0A, by_bb_rx_conf); /* CR10 */
 }
 
index e20701815db989e4e50c5e0afee44f50a01bca7e..6ac7d470c041129e2acac0ec04fe10a5eb75fe23 100644 (file)
@@ -87,10 +87,10 @@ bool set_channel(struct vnt_private *priv, struct ieee80211_channel *ch)
 
        /* Set VGA to max sensitivity */
        if (priv->bUpdateBBVGA &&
-           priv->byBBVGACurrent != priv->bbvga[0]) {
-               priv->byBBVGACurrent = priv->bbvga[0];
+           priv->bbvga_current != priv->bbvga[0]) {
+               priv->bbvga_current = priv->bbvga[0];
 
-               bb_set_vga_gain_offset(priv, priv->byBBVGACurrent);
+               bb_set_vga_gain_offset(priv, priv->bbvga_current);
        }
 
        /* clear NAV */
index b662c74a2dc7cc424c248b662438c13a9a8cdfaa..9ae7171d02ee28614ec7e57dc5ba9e0e03b97f89 100644 (file)
@@ -249,7 +249,7 @@ struct vnt_private {
        bool bUpdateBBVGA;
        unsigned int    uBBVGADiffCount;
        unsigned char byBBVGANew;
-       unsigned char byBBVGACurrent;
+       unsigned char bbvga_current;
        unsigned char bbvga[BB_VGA_LEVEL];
        long                    dbm_threshold[BB_VGA_LEVEL];
 
index 385848df884820b1596108887ea9aed13be7bd0b..6990129ceb10031d30c18eb5452e7fcf9eb06f79 100644 (file)
@@ -424,8 +424,8 @@ static void device_init_registers(struct vnt_private *priv)
        bb_vt3253_init(priv);
 
        if (priv->bUpdateBBVGA) {
-               priv->byBBVGACurrent = priv->bbvga[0];
-               priv->byBBVGANew = priv->byBBVGACurrent;
+               priv->bbvga_current = priv->bbvga[0];
+               priv->byBBVGANew = priv->bbvga_current;
                bb_set_vga_gain_offset(priv, priv->bbvga[0]);
        }
 
@@ -1058,7 +1058,7 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
                }
        }
 
-       if (priv->byBBVGANew == priv->byBBVGACurrent) {
+       if (priv->byBBVGANew == priv->bbvga_current) {
                priv->uBBVGADiffCount = 1;
                return;
        }
@@ -1072,7 +1072,7 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
                dev_dbg(&priv->pcid->dev,
                        "First RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
                        (int)dbm, priv->byBBVGANew,
-                       priv->byBBVGACurrent,
+                       priv->bbvga_current,
                        (int)priv->uBBVGADiffCount);
        }
 
@@ -1080,7 +1080,7 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
                dev_dbg(&priv->pcid->dev,
                        "RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
                        (int)dbm, priv->byBBVGANew,
-                       priv->byBBVGACurrent,
+                       priv->bbvga_current,
                        (int)priv->uBBVGADiffCount);
 
                bb_set_vga_gain_offset(priv, priv->byBBVGANew);