All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <cover.1696141471.git.opensource206@gmail.com>

diff --git a/a/1.txt b/N1/1.txt
index f26f5de..6c27f50 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -15,3 +15,408 @@ Pavan Bobba (3):
 
 -- 
 2.34.1
+
+From 6894dff7cc5a780627e0335e8f5cdc8b353eea53 Mon Sep 17 00:00:00 2001
+Message-Id: <6894dff7cc5a780627e0335e8f5cdc8b353eea53.1696141471.git.opensource206@gmail.com>
+In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
+References: <cover.1696141471.git.opensource206@gmail.com>
+From: Pavan Bobba <opensource206@gmail.com>
+Date: Thu, 28 Sep 2023 18:27:27 +0530
+Subject: [PATCH 1/3] [PATCH 1/3] staging: vt6655: Type encoding info dropped
+ from array name "abyBBVGA"
+To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
+
+array name "abyBBVGA" 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>
+---
+v1 -> v2 : 1.cover letter added
+           2.patches sent as attachments in a single mail for review
+
+v2 -> v3 : patches sending in a series intead of attachments
+
+ drivers/staging/vt6655/baseband.c    | 38 ++++++++++++++--------------
+ drivers/staging/vt6655/channel.c     |  4 +--
+ drivers/staging/vt6655/device.h      |  2 +-
+ drivers/staging/vt6655/device_main.c |  8 +++---
+ 4 files changed, 26 insertions(+), 26 deletions(-)
+
+diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c
+index 0ae2ab3987c6..a19a75f5d761 100644
+--- a/drivers/staging/vt6655/baseband.c
++++ b/drivers/staging/vt6655/baseband.c
+@@ -2016,10 +2016,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
+ 			iowrite32(0x23, iobase + MAC_REG_ITRTMSET);
+ 			vt6655_mac_reg_bits_on(iobase, MAC_REG_PAPEDELAY, BIT(0));
+ 		}
+-		priv->abyBBVGA[0] = 0x18;
+-		priv->abyBBVGA[1] = 0x0A;
+-		priv->abyBBVGA[2] = 0x0;
+-		priv->abyBBVGA[3] = 0x0;
++		priv->bbvga[0] = 0x18;
++		priv->bbvga[1] = 0x0A;
++		priv->bbvga[2] = 0x0;
++		priv->bbvga[3] = 0x0;
+ 		priv->dbm_threshold[0] = -70;
+ 		priv->dbm_threshold[1] = -50;
+ 		priv->dbm_threshold[2] = 0;
+@@ -2034,10 +2034,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
+ 			result &= bb_write_embedded(priv,
+ 				vt3253b0_agc[ii][0], vt3253b0_agc[ii][1]);
+ 
+-		priv->abyBBVGA[0] = 0x1C;
+-		priv->abyBBVGA[1] = 0x10;
+-		priv->abyBBVGA[2] = 0x0;
+-		priv->abyBBVGA[3] = 0x0;
++		priv->bbvga[0] = 0x1C;
++		priv->bbvga[1] = 0x10;
++		priv->bbvga[2] = 0x0;
++		priv->bbvga[3] = 0x0;
+ 		priv->dbm_threshold[0] = -70;
+ 		priv->dbm_threshold[1] = -48;
+ 		priv->dbm_threshold[2] = 0;
+@@ -2056,10 +2056,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
+ 		iowrite8(0x23, iobase + MAC_REG_ITRTMSET);
+ 		vt6655_mac_reg_bits_on(iobase, MAC_REG_PAPEDELAY, BIT(0));
+ 
+-		priv->abyBBVGA[0] = 0x14;
+-		priv->abyBBVGA[1] = 0x0A;
+-		priv->abyBBVGA[2] = 0x0;
+-		priv->abyBBVGA[3] = 0x0;
++		priv->bbvga[0] = 0x14;
++		priv->bbvga[1] = 0x0A;
++		priv->bbvga[2] = 0x0;
++		priv->bbvga[3] = 0x0;
+ 		priv->dbm_threshold[0] = -60;
+ 		priv->dbm_threshold[1] = -50;
+ 		priv->dbm_threshold[2] = 0;
+@@ -2074,10 +2074,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
+ 			result &= bb_write_embedded(priv,
+ 				vt3253b0_agc[ii][0], vt3253b0_agc[ii][1]);
+ 
+-		priv->abyBBVGA[0] = 0x1C;
+-		priv->abyBBVGA[1] = 0x10;
+-		priv->abyBBVGA[2] = 0x0;
+-		priv->abyBBVGA[3] = 0x0;
++		priv->bbvga[0] = 0x1C;
++		priv->bbvga[1] = 0x10;
++		priv->bbvga[2] = 0x0;
++		priv->bbvga[3] = 0x0;
+ 		priv->dbm_threshold[0] = -70;
+ 		priv->dbm_threshold[1] = -48;
+ 		priv->dbm_threshold[2] = 0;
+@@ -2088,7 +2088,7 @@ bool bb_vt3253_init(struct vnt_private *priv)
+ 	} else {
+ 		/* No VGA Table now */
+ 		priv->bUpdateBBVGA = false;
+-		priv->abyBBVGA[0] = 0x1C;
++		priv->bbvga[0] = 0x1C;
+ 	}
+ 
+ 	if (by_local_id > REV_ID_VT3253_A1) {
+@@ -2126,7 +2126,7 @@ bb_set_short_slot_time(struct vnt_private *priv)
+ 
+ 	/* patch for 3253B0 Baseband with Cardbus module */
+ 	bb_read_embedded(priv, 0xE7, &by_bb_vga);
+-	if (by_bb_vga == priv->abyBBVGA[0])
++	if (by_bb_vga == priv->bbvga[0])
+ 		by_bb_rx_conf |= 0x20; /* 0010 0000 */
+ 
+ 	bb_write_embedded(priv, 0x0A, by_bb_rx_conf); /* CR10 */
+@@ -2140,7 +2140,7 @@ void bb_set_vga_gain_offset(struct vnt_private *priv, unsigned char by_data)
+ 
+ 	bb_read_embedded(priv, 0x0A, &by_bb_rx_conf); /* CR10 */
+ 	/* patch for 3253B0 Baseband with Cardbus module */
+-	if (by_data == priv->abyBBVGA[0])
++	if (by_data == priv->bbvga[0])
+ 		by_bb_rx_conf |= 0x20; /* 0010 0000 */
+ 	else if (priv->short_slot_time)
+ 		by_bb_rx_conf &= 0xDF; /* 1101 1111 */
+diff --git a/drivers/staging/vt6655/channel.c b/drivers/staging/vt6655/channel.c
+index e90e0b43505d..e20701815db9 100644
+--- a/drivers/staging/vt6655/channel.c
++++ b/drivers/staging/vt6655/channel.c
+@@ -87,8 +87,8 @@ bool set_channel(struct vnt_private *priv, struct ieee80211_channel *ch)
+ 
+ 	/* Set VGA to max sensitivity */
+ 	if (priv->bUpdateBBVGA &&
+-	    priv->byBBVGACurrent != priv->abyBBVGA[0]) {
+-		priv->byBBVGACurrent = priv->abyBBVGA[0];
++	    priv->byBBVGACurrent != priv->bbvga[0]) {
++		priv->byBBVGACurrent = priv->bbvga[0];
+ 
+ 		bb_set_vga_gain_offset(priv, priv->byBBVGACurrent);
+ 	}
+diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
+index 8c90539cc3d7..b662c74a2dc7 100644
+--- a/drivers/staging/vt6655/device.h
++++ b/drivers/staging/vt6655/device.h
+@@ -250,7 +250,7 @@ struct vnt_private {
+ 	unsigned int	uBBVGADiffCount;
+ 	unsigned char byBBVGANew;
+ 	unsigned char byBBVGACurrent;
+-	unsigned char abyBBVGA[BB_VGA_LEVEL];
++	unsigned char bbvga[BB_VGA_LEVEL];
+ 	long                    dbm_threshold[BB_VGA_LEVEL];
+ 
+ 	unsigned char byBBPreEDRSSI;
+diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
+index f76f482f4c06..385848df8848 100644
+--- a/drivers/staging/vt6655/device_main.c
++++ b/drivers/staging/vt6655/device_main.c
+@@ -424,9 +424,9 @@ static void device_init_registers(struct vnt_private *priv)
+ 	bb_vt3253_init(priv);
+ 
+ 	if (priv->bUpdateBBVGA) {
+-		priv->byBBVGACurrent = priv->abyBBVGA[0];
++		priv->byBBVGACurrent = priv->bbvga[0];
+ 		priv->byBBVGANew = priv->byBBVGACurrent;
+-		bb_set_vga_gain_offset(priv, priv->abyBBVGA[0]);
++		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
+ 	}
+ 
+ 	bb_set_rx_antenna_mode(priv, priv->byRxAntennaMode);
+@@ -1053,7 +1053,7 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
+ 
+ 	for (i = 0; i < BB_VGA_LEVEL; i++) {
+ 		if (dbm < priv->dbm_threshold[i]) {
+-			priv->byBBVGANew = priv->abyBBVGA[i];
++			priv->byBBVGANew = priv->bbvga[i];
+ 			break;
+ 		}
+ 	}
+@@ -1510,7 +1510,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
+ 			priv->short_slot_time = false;
+ 
+ 		CARDbSetPhyParameter(priv, priv->byBBType);
+-		bb_set_vga_gain_offset(priv, priv->abyBBVGA[0]);
++		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
+ 	}
+ 
+ 	if (changed & BSS_CHANGED_TXPOWER)
+-- 
+2.34.1
+
+From d40eb60e6cccf2b5432904abb74bc009fac5e2e1 Mon Sep 17 00:00:00 2001
+Message-Id: <d40eb60e6cccf2b5432904abb74bc009fac5e2e1.1696141471.git.opensource206@gmail.com>
+In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
+References: <cover.1696141471.git.opensource206@gmail.com>
+From: Pavan Bobba <opensource206@gmail.com>
+Date: Thu, 28 Sep 2023 20:26:02 +0530
+Subject: [PATCH 2/3] [PATCH 2/3] staging: vt6655: Type encoding info dropped
+ from variable name "byBBVGACurrent"
+To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
+
+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>
+---
+v1 -> v2 : 1.cover letter added
+           2.patches sent as attachments in a single mail for review
+
+v2 -> v3 : patches sending in a series intead of attachments
+ 
+ drivers/staging/vt6655/baseband.c    |  2 +-
+ drivers/staging/vt6655/channel.c     |  6 +++---
+ drivers/staging/vt6655/device.h      |  2 +-
+ drivers/staging/vt6655/device_main.c | 10 +++++-----
+ 4 files changed, 10 insertions(+), 10 deletions(-)
+
+diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c
+index a19a75f5d761..7d47b266b87e 100644
+--- a/drivers/staging/vt6655/baseband.c
++++ b/drivers/staging/vt6655/baseband.c
+@@ -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 */
+ }
+ 
+diff --git a/drivers/staging/vt6655/channel.c b/drivers/staging/vt6655/channel.c
+index e20701815db9..6ac7d470c041 100644
+--- a/drivers/staging/vt6655/channel.c
++++ b/drivers/staging/vt6655/channel.c
+@@ -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 */
+diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
+index b662c74a2dc7..9ae7171d02ee 100644
+--- a/drivers/staging/vt6655/device.h
++++ b/drivers/staging/vt6655/device.h
+@@ -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];
+ 
+diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
+index 385848df8848..6990129ceb10 100644
+--- a/drivers/staging/vt6655/device_main.c
++++ b/drivers/staging/vt6655/device_main.c
+@@ -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);
+-- 
+2.34.1
+
+From e7dc405ffa8050eb8693086204c902a723392a62 Mon Sep 17 00:00:00 2001
+Message-Id: <e7dc405ffa8050eb8693086204c902a723392a62.1696141471.git.opensource206@gmail.com>
+In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
+References: <cover.1696141471.git.opensource206@gmail.com>
+From: Pavan Bobba <opensource206@gmail.com>
+Date: Thu, 28 Sep 2023 20:30:34 +0530
+Subject: [PATCH 3/3] [PATCH 3/3] staging: vt6655: Type encoding info dropped
+ from variable name "byBBVGANew"
+To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
+
+variable name "byBBVGANew" 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>
+---
+v1 -> v2 : 1.cover letter added
+           2.patches sent as attachments in a single mail for review
+
+v2 -> v3 : patches sending in a series intead of attachments
+ 
+ drivers/staging/vt6655/device.h      |  2 +-
+ drivers/staging/vt6655/device_main.c | 14 +++++++-------
+ 2 files changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
+index 9ae7171d02ee..68bfadacfa7c 100644
+--- a/drivers/staging/vt6655/device.h
++++ b/drivers/staging/vt6655/device.h
+@@ -248,7 +248,7 @@ struct vnt_private {
+ 	/* For Update BaseBand VGA Gain Offset */
+ 	bool bUpdateBBVGA;
+ 	unsigned int	uBBVGADiffCount;
+-	unsigned char byBBVGANew;
++	unsigned char bbvga_new;
+ 	unsigned char bbvga_current;
+ 	unsigned char bbvga[BB_VGA_LEVEL];
+ 	long                    dbm_threshold[BB_VGA_LEVEL];
+diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
+index 6990129ceb10..b08fcf7e6edc 100644
+--- a/drivers/staging/vt6655/device_main.c
++++ b/drivers/staging/vt6655/device_main.c
+@@ -425,7 +425,7 @@ static void device_init_registers(struct vnt_private *priv)
+ 
+ 	if (priv->bUpdateBBVGA) {
+ 		priv->bbvga_current = priv->bbvga[0];
+-		priv->byBBVGANew = priv->bbvga_current;
++		priv->bbvga_new = priv->bbvga_current;
+ 		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
+ 	}
+ 
+@@ -1053,12 +1053,12 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
+ 
+ 	for (i = 0; i < BB_VGA_LEVEL; i++) {
+ 		if (dbm < priv->dbm_threshold[i]) {
+-			priv->byBBVGANew = priv->bbvga[i];
++			priv->bbvga_new = priv->bbvga[i];
+ 			break;
+ 		}
+ 	}
+ 
+-	if (priv->byBBVGANew == priv->bbvga_current) {
++	if (priv->bbvga_new == priv->bbvga_current) {
+ 		priv->uBBVGADiffCount = 1;
+ 		return;
+ 	}
+@@ -1067,11 +1067,11 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
+ 
+ 	if (priv->uBBVGADiffCount == 1) {
+ 		/* first VGA diff gain */
+-		bb_set_vga_gain_offset(priv, priv->byBBVGANew);
++		bb_set_vga_gain_offset(priv, priv->bbvga_new);
+ 
+ 		dev_dbg(&priv->pcid->dev,
+ 			"First RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
+-			(int)dbm, priv->byBBVGANew,
++			(int)dbm, priv->bbvga_new,
+ 			priv->bbvga_current,
+ 			(int)priv->uBBVGADiffCount);
+ 	}
+@@ -1079,11 +1079,11 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
+ 	if (priv->uBBVGADiffCount >= BB_VGA_CHANGE_THRESHOLD) {
+ 		dev_dbg(&priv->pcid->dev,
+ 			"RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
+-			(int)dbm, priv->byBBVGANew,
++			(int)dbm, priv->bbvga_new,
+ 			priv->bbvga_current,
+ 			(int)priv->uBBVGADiffCount);
+ 
+-		bb_set_vga_gain_offset(priv, priv->byBBVGANew);
++		bb_set_vga_gain_offset(priv, priv->bbvga_new);
+ 	}
+ }
+ 
+-- 
+2.34.1
diff --git a/a/2.hdr b/a/2.hdr
deleted file mode 100644
index df4c76b..0000000
--- a/a/2.hdr
+++ /dev/null
@@ -1,3 +0,0 @@
-Content-Type: text/x-diff; charset=us-ascii
-Content-Disposition: attachment;
-	filename="0001-PATCH-1-3-staging-vt6655-Type-encoding-info-dropped-.patch"
diff --git a/a/2.txt b/a/2.txt
deleted file mode 100644
index 2c4a1f2..0000000
--- a/a/2.txt
+++ /dev/null
@@ -1,180 +0,0 @@
-From 6894dff7cc5a780627e0335e8f5cdc8b353eea53 Mon Sep 17 00:00:00 2001
-Message-Id: <6894dff7cc5a780627e0335e8f5cdc8b353eea53.1696141471.git.opensource206@gmail.com>
-In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
-References: <cover.1696141471.git.opensource206@gmail.com>
-From: Pavan Bobba <opensource206@gmail.com>
-Date: Thu, 28 Sep 2023 18:27:27 +0530
-Subject: [PATCH 1/3] [PATCH 1/3] staging: vt6655: Type encoding info dropped
- from array name "abyBBVGA"
-To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
-
-array name "abyBBVGA" 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>
----
- drivers/staging/vt6655/baseband.c    | 38 ++++++++++++++--------------
- drivers/staging/vt6655/channel.c     |  4 +--
- drivers/staging/vt6655/device.h      |  2 +-
- drivers/staging/vt6655/device_main.c |  8 +++---
- 4 files changed, 26 insertions(+), 26 deletions(-)
-
-diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c
-index 0ae2ab3987c6..a19a75f5d761 100644
---- a/drivers/staging/vt6655/baseband.c
-+++ b/drivers/staging/vt6655/baseband.c
-@@ -2016,10 +2016,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
- 			iowrite32(0x23, iobase + MAC_REG_ITRTMSET);
- 			vt6655_mac_reg_bits_on(iobase, MAC_REG_PAPEDELAY, BIT(0));
- 		}
--		priv->abyBBVGA[0] = 0x18;
--		priv->abyBBVGA[1] = 0x0A;
--		priv->abyBBVGA[2] = 0x0;
--		priv->abyBBVGA[3] = 0x0;
-+		priv->bbvga[0] = 0x18;
-+		priv->bbvga[1] = 0x0A;
-+		priv->bbvga[2] = 0x0;
-+		priv->bbvga[3] = 0x0;
- 		priv->dbm_threshold[0] = -70;
- 		priv->dbm_threshold[1] = -50;
- 		priv->dbm_threshold[2] = 0;
-@@ -2034,10 +2034,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
- 			result &= bb_write_embedded(priv,
- 				vt3253b0_agc[ii][0], vt3253b0_agc[ii][1]);
- 
--		priv->abyBBVGA[0] = 0x1C;
--		priv->abyBBVGA[1] = 0x10;
--		priv->abyBBVGA[2] = 0x0;
--		priv->abyBBVGA[3] = 0x0;
-+		priv->bbvga[0] = 0x1C;
-+		priv->bbvga[1] = 0x10;
-+		priv->bbvga[2] = 0x0;
-+		priv->bbvga[3] = 0x0;
- 		priv->dbm_threshold[0] = -70;
- 		priv->dbm_threshold[1] = -48;
- 		priv->dbm_threshold[2] = 0;
-@@ -2056,10 +2056,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
- 		iowrite8(0x23, iobase + MAC_REG_ITRTMSET);
- 		vt6655_mac_reg_bits_on(iobase, MAC_REG_PAPEDELAY, BIT(0));
- 
--		priv->abyBBVGA[0] = 0x14;
--		priv->abyBBVGA[1] = 0x0A;
--		priv->abyBBVGA[2] = 0x0;
--		priv->abyBBVGA[3] = 0x0;
-+		priv->bbvga[0] = 0x14;
-+		priv->bbvga[1] = 0x0A;
-+		priv->bbvga[2] = 0x0;
-+		priv->bbvga[3] = 0x0;
- 		priv->dbm_threshold[0] = -60;
- 		priv->dbm_threshold[1] = -50;
- 		priv->dbm_threshold[2] = 0;
-@@ -2074,10 +2074,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
- 			result &= bb_write_embedded(priv,
- 				vt3253b0_agc[ii][0], vt3253b0_agc[ii][1]);
- 
--		priv->abyBBVGA[0] = 0x1C;
--		priv->abyBBVGA[1] = 0x10;
--		priv->abyBBVGA[2] = 0x0;
--		priv->abyBBVGA[3] = 0x0;
-+		priv->bbvga[0] = 0x1C;
-+		priv->bbvga[1] = 0x10;
-+		priv->bbvga[2] = 0x0;
-+		priv->bbvga[3] = 0x0;
- 		priv->dbm_threshold[0] = -70;
- 		priv->dbm_threshold[1] = -48;
- 		priv->dbm_threshold[2] = 0;
-@@ -2088,7 +2088,7 @@ bool bb_vt3253_init(struct vnt_private *priv)
- 	} else {
- 		/* No VGA Table now */
- 		priv->bUpdateBBVGA = false;
--		priv->abyBBVGA[0] = 0x1C;
-+		priv->bbvga[0] = 0x1C;
- 	}
- 
- 	if (by_local_id > REV_ID_VT3253_A1) {
-@@ -2126,7 +2126,7 @@ bb_set_short_slot_time(struct vnt_private *priv)
- 
- 	/* patch for 3253B0 Baseband with Cardbus module */
- 	bb_read_embedded(priv, 0xE7, &by_bb_vga);
--	if (by_bb_vga == priv->abyBBVGA[0])
-+	if (by_bb_vga == priv->bbvga[0])
- 		by_bb_rx_conf |= 0x20; /* 0010 0000 */
- 
- 	bb_write_embedded(priv, 0x0A, by_bb_rx_conf); /* CR10 */
-@@ -2140,7 +2140,7 @@ void bb_set_vga_gain_offset(struct vnt_private *priv, unsigned char by_data)
- 
- 	bb_read_embedded(priv, 0x0A, &by_bb_rx_conf); /* CR10 */
- 	/* patch for 3253B0 Baseband with Cardbus module */
--	if (by_data == priv->abyBBVGA[0])
-+	if (by_data == priv->bbvga[0])
- 		by_bb_rx_conf |= 0x20; /* 0010 0000 */
- 	else if (priv->short_slot_time)
- 		by_bb_rx_conf &= 0xDF; /* 1101 1111 */
-diff --git a/drivers/staging/vt6655/channel.c b/drivers/staging/vt6655/channel.c
-index e90e0b43505d..e20701815db9 100644
---- a/drivers/staging/vt6655/channel.c
-+++ b/drivers/staging/vt6655/channel.c
-@@ -87,8 +87,8 @@ bool set_channel(struct vnt_private *priv, struct ieee80211_channel *ch)
- 
- 	/* Set VGA to max sensitivity */
- 	if (priv->bUpdateBBVGA &&
--	    priv->byBBVGACurrent != priv->abyBBVGA[0]) {
--		priv->byBBVGACurrent = priv->abyBBVGA[0];
-+	    priv->byBBVGACurrent != priv->bbvga[0]) {
-+		priv->byBBVGACurrent = priv->bbvga[0];
- 
- 		bb_set_vga_gain_offset(priv, priv->byBBVGACurrent);
- 	}
-diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
-index 8c90539cc3d7..b662c74a2dc7 100644
---- a/drivers/staging/vt6655/device.h
-+++ b/drivers/staging/vt6655/device.h
-@@ -250,7 +250,7 @@ struct vnt_private {
- 	unsigned int	uBBVGADiffCount;
- 	unsigned char byBBVGANew;
- 	unsigned char byBBVGACurrent;
--	unsigned char abyBBVGA[BB_VGA_LEVEL];
-+	unsigned char bbvga[BB_VGA_LEVEL];
- 	long                    dbm_threshold[BB_VGA_LEVEL];
- 
- 	unsigned char byBBPreEDRSSI;
-diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
-index f76f482f4c06..385848df8848 100644
---- a/drivers/staging/vt6655/device_main.c
-+++ b/drivers/staging/vt6655/device_main.c
-@@ -424,9 +424,9 @@ static void device_init_registers(struct vnt_private *priv)
- 	bb_vt3253_init(priv);
- 
- 	if (priv->bUpdateBBVGA) {
--		priv->byBBVGACurrent = priv->abyBBVGA[0];
-+		priv->byBBVGACurrent = priv->bbvga[0];
- 		priv->byBBVGANew = priv->byBBVGACurrent;
--		bb_set_vga_gain_offset(priv, priv->abyBBVGA[0]);
-+		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
- 	}
- 
- 	bb_set_rx_antenna_mode(priv, priv->byRxAntennaMode);
-@@ -1053,7 +1053,7 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
- 
- 	for (i = 0; i < BB_VGA_LEVEL; i++) {
- 		if (dbm < priv->dbm_threshold[i]) {
--			priv->byBBVGANew = priv->abyBBVGA[i];
-+			priv->byBBVGANew = priv->bbvga[i];
- 			break;
- 		}
- 	}
-@@ -1510,7 +1510,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
- 			priv->short_slot_time = false;
- 
- 		CARDbSetPhyParameter(priv, priv->byBBType);
--		bb_set_vga_gain_offset(priv, priv->abyBBVGA[0]);
-+		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
- 	}
- 
- 	if (changed & BSS_CHANGED_TXPOWER)
--- 
-2.34.1
diff --git a/a/3.hdr b/a/3.hdr
deleted file mode 100644
index d159a75..0000000
--- a/a/3.hdr
+++ /dev/null
@@ -1,3 +0,0 @@
-Content-Type: text/x-diff; charset=us-ascii
-Content-Disposition: attachment;
-	filename="0002-PATCH-2-3-staging-vt6655-Type-encoding-info-dropped-.patch"
diff --git a/a/3.txt b/a/3.txt
deleted file mode 100644
index 7fce9e6..0000000
--- a/a/3.txt
+++ /dev/null
@@ -1,113 +0,0 @@
-From d40eb60e6cccf2b5432904abb74bc009fac5e2e1 Mon Sep 17 00:00:00 2001
-Message-Id: <d40eb60e6cccf2b5432904abb74bc009fac5e2e1.1696141471.git.opensource206@gmail.com>
-In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
-References: <cover.1696141471.git.opensource206@gmail.com>
-From: Pavan Bobba <opensource206@gmail.com>
-Date: Thu, 28 Sep 2023 20:26:02 +0530
-Subject: [PATCH 2/3] [PATCH 2/3] staging: vt6655: Type encoding info dropped
- from variable name "byBBVGACurrent"
-To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
-
-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>
----
- drivers/staging/vt6655/baseband.c    |  2 +-
- drivers/staging/vt6655/channel.c     |  6 +++---
- drivers/staging/vt6655/device.h      |  2 +-
- drivers/staging/vt6655/device_main.c | 10 +++++-----
- 4 files changed, 10 insertions(+), 10 deletions(-)
-
-diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c
-index a19a75f5d761..7d47b266b87e 100644
---- a/drivers/staging/vt6655/baseband.c
-+++ b/drivers/staging/vt6655/baseband.c
-@@ -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 */
- }
- 
-diff --git a/drivers/staging/vt6655/channel.c b/drivers/staging/vt6655/channel.c
-index e20701815db9..6ac7d470c041 100644
---- a/drivers/staging/vt6655/channel.c
-+++ b/drivers/staging/vt6655/channel.c
-@@ -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 */
-diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
-index b662c74a2dc7..9ae7171d02ee 100644
---- a/drivers/staging/vt6655/device.h
-+++ b/drivers/staging/vt6655/device.h
-@@ -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];
- 
-diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
-index 385848df8848..6990129ceb10 100644
---- a/drivers/staging/vt6655/device_main.c
-+++ b/drivers/staging/vt6655/device_main.c
-@@ -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);
--- 
-2.34.1
diff --git a/a/4.hdr b/a/4.hdr
deleted file mode 100644
index 31f6d00..0000000
--- a/a/4.hdr
+++ /dev/null
@@ -1,3 +0,0 @@
-Content-Type: text/x-diff; charset=us-ascii
-Content-Disposition: attachment;
-	filename="0003-PATCH-3-3-staging-vt6655-Type-encoding-info-dropped-.patch"
diff --git a/a/4.txt b/a/4.txt
deleted file mode 100644
index 7f25aa8..0000000
--- a/a/4.txt
+++ /dev/null
@@ -1,94 +0,0 @@
-From e7dc405ffa8050eb8693086204c902a723392a62 Mon Sep 17 00:00:00 2001
-Message-Id: <e7dc405ffa8050eb8693086204c902a723392a62.1696141471.git.opensource206@gmail.com>
-In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
-References: <cover.1696141471.git.opensource206@gmail.com>
-From: Pavan Bobba <opensource206@gmail.com>
-Date: Thu, 28 Sep 2023 20:30:34 +0530
-Subject: [PATCH 3/3] [PATCH 3/3] staging: vt6655: Type encoding info dropped
- from variable name "byBBVGANew"
-To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
-
-variable name "byBBVGANew" 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>
----
- drivers/staging/vt6655/device.h      |  2 +-
- drivers/staging/vt6655/device_main.c | 14 +++++++-------
- 2 files changed, 8 insertions(+), 8 deletions(-)
-
-diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
-index 9ae7171d02ee..68bfadacfa7c 100644
---- a/drivers/staging/vt6655/device.h
-+++ b/drivers/staging/vt6655/device.h
-@@ -248,7 +248,7 @@ struct vnt_private {
- 	/* For Update BaseBand VGA Gain Offset */
- 	bool bUpdateBBVGA;
- 	unsigned int	uBBVGADiffCount;
--	unsigned char byBBVGANew;
-+	unsigned char bbvga_new;
- 	unsigned char bbvga_current;
- 	unsigned char bbvga[BB_VGA_LEVEL];
- 	long                    dbm_threshold[BB_VGA_LEVEL];
-diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
-index 6990129ceb10..b08fcf7e6edc 100644
---- a/drivers/staging/vt6655/device_main.c
-+++ b/drivers/staging/vt6655/device_main.c
-@@ -425,7 +425,7 @@ static void device_init_registers(struct vnt_private *priv)
- 
- 	if (priv->bUpdateBBVGA) {
- 		priv->bbvga_current = priv->bbvga[0];
--		priv->byBBVGANew = priv->bbvga_current;
-+		priv->bbvga_new = priv->bbvga_current;
- 		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
- 	}
- 
-@@ -1053,12 +1053,12 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
- 
- 	for (i = 0; i < BB_VGA_LEVEL; i++) {
- 		if (dbm < priv->dbm_threshold[i]) {
--			priv->byBBVGANew = priv->bbvga[i];
-+			priv->bbvga_new = priv->bbvga[i];
- 			break;
- 		}
- 	}
- 
--	if (priv->byBBVGANew == priv->bbvga_current) {
-+	if (priv->bbvga_new == priv->bbvga_current) {
- 		priv->uBBVGADiffCount = 1;
- 		return;
- 	}
-@@ -1067,11 +1067,11 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
- 
- 	if (priv->uBBVGADiffCount == 1) {
- 		/* first VGA diff gain */
--		bb_set_vga_gain_offset(priv, priv->byBBVGANew);
-+		bb_set_vga_gain_offset(priv, priv->bbvga_new);
- 
- 		dev_dbg(&priv->pcid->dev,
- 			"First RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
--			(int)dbm, priv->byBBVGANew,
-+			(int)dbm, priv->bbvga_new,
- 			priv->bbvga_current,
- 			(int)priv->uBBVGADiffCount);
- 	}
-@@ -1079,11 +1079,11 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
- 	if (priv->uBBVGADiffCount >= BB_VGA_CHANGE_THRESHOLD) {
- 		dev_dbg(&priv->pcid->dev,
- 			"RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
--			(int)dbm, priv->byBBVGANew,
-+			(int)dbm, priv->bbvga_new,
- 			priv->bbvga_current,
- 			(int)priv->uBBVGADiffCount);
- 
--		bb_set_vga_gain_offset(priv, priv->byBBVGANew);
-+		bb_set_vga_gain_offset(priv, priv->bbvga_new);
- 	}
- }
- 
--- 
-2.34.1
diff --git a/a/content_digest b/N1/content_digest
index 117707f..4fa7c7d 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,10 +1,10 @@
  "From\0Pavan Bobba <opensource206@gmail.com>\0"
- "Subject\0[PATCH 0/3] Type encoding info dropped from arrary name \"abyBBVGA\" and variable names \"byBBVGACurrent\", \"byBBVGANew\"\0"
- "Date\0Sun, 1 Oct 2023 12:13:14 +0530\0"
+ "Subject\0[PATCH v3 0/3] Type encoding info dropped from arrary name \"abyBBVGA\" and variable names \"byBBVGACurrent\", \"byBBVGANew\"\0"
+ "Date\0Tue, 3 Oct 2023 19:45:06 +0530\0"
  "To\0Greg Kroah-Hartman <gregkh@linuxfoundation.org>"
   linux-staging@lists.linux.dev
  " linux-kernel@vger.kernel.org\0"
- "\01:1\0"
+ "\00:1\0"
  "b\0"
  "This patchset series consist of fixes to issues found by checkpatch\n"
  "\n"
@@ -22,10 +22,8 @@
  " 4 files changed, 38 insertions(+), 38 deletions(-)\n"
  "\n"
  "-- \n"
- 2.34.1
- "\01:2\0"
- "fn\00001-PATCH-1-3-staging-vt6655-Type-encoding-info-dropped-.patch\0"
- "b\0"
+ "2.34.1\n"
+ "\n"
  "From 6894dff7cc5a780627e0335e8f5cdc8b353eea53 Mon Sep 17 00:00:00 2001\n"
  "Message-Id: <6894dff7cc5a780627e0335e8f5cdc8b353eea53.1696141471.git.opensource206@gmail.com>\n"
  "In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>\n"
@@ -45,6 +43,11 @@
  "\n"
  "Signed-off-by: Pavan Bobba <opensource206@gmail.com>\n"
  "---\n"
+ "v1 -> v2 : 1.cover letter added\n"
+ "           2.patches sent as attachments in a single mail for review\n"
+ "\n"
+ "v2 -> v3 : patches sending in a series intead of attachments\n"
+ "\n"
  " drivers/staging/vt6655/baseband.c    | 38 ++++++++++++++--------------\n"
  " drivers/staging/vt6655/channel.c     |  4 +--\n"
  " drivers/staging/vt6655/device.h      |  2 +-\n"
@@ -205,10 +208,8 @@
  " \n"
  " \tif (changed & BSS_CHANGED_TXPOWER)\n"
  "-- \n"
- 2.34.1
- "\01:3\0"
- "fn\00002-PATCH-2-3-staging-vt6655-Type-encoding-info-dropped-.patch\0"
- "b\0"
+ "2.34.1\n"
+ "\n"
  "From d40eb60e6cccf2b5432904abb74bc009fac5e2e1 Mon Sep 17 00:00:00 2001\n"
  "Message-Id: <d40eb60e6cccf2b5432904abb74bc009fac5e2e1.1696141471.git.opensource206@gmail.com>\n"
  "In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>\n"
@@ -228,6 +229,11 @@
  "\n"
  "Signed-off-by: Pavan Bobba <opensource206@gmail.com>\n"
  "---\n"
+ "v1 -> v2 : 1.cover letter added\n"
+ "           2.patches sent as attachments in a single mail for review\n"
+ "\n"
+ "v2 -> v3 : patches sending in a series intead of attachments\n"
+ " \n"
  " drivers/staging/vt6655/baseband.c    |  2 +-\n"
  " drivers/staging/vt6655/channel.c     |  6 +++---\n"
  " drivers/staging/vt6655/device.h      |  2 +-\n"
@@ -321,10 +327,8 @@
  " \n"
  " \t\tbb_set_vga_gain_offset(priv, priv->byBBVGANew);\n"
  "-- \n"
- 2.34.1
- "\01:4\0"
- "fn\00003-PATCH-3-3-staging-vt6655-Type-encoding-info-dropped-.patch\0"
- "b\0"
+ "2.34.1\n"
+ "\n"
  "From e7dc405ffa8050eb8693086204c902a723392a62 Mon Sep 17 00:00:00 2001\n"
  "Message-Id: <e7dc405ffa8050eb8693086204c902a723392a62.1696141471.git.opensource206@gmail.com>\n"
  "In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>\n"
@@ -344,6 +348,11 @@
  "\n"
  "Signed-off-by: Pavan Bobba <opensource206@gmail.com>\n"
  "---\n"
+ "v1 -> v2 : 1.cover letter added\n"
+ "           2.patches sent as attachments in a single mail for review\n"
+ "\n"
+ "v2 -> v3 : patches sending in a series intead of attachments\n"
+ " \n"
  " drivers/staging/vt6655/device.h      |  2 +-\n"
  " drivers/staging/vt6655/device_main.c | 14 +++++++-------\n"
  " 2 files changed, 8 insertions(+), 8 deletions(-)\n"
@@ -420,4 +429,4 @@
  "-- \n"
  2.34.1
 
-05c2279868f1821edd7e7afadb5d8e786d40f89de86bc3eb66afddba4b18ecf8
+e298df691e38e6410e8dc85537bbea650e59a39bbedc8fce13d918fe11e9e44d

diff --git a/a/1.txt b/N2/1.txt
index f26f5de..f3681bd 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -15,3 +15,414 @@ Pavan Bobba (3):
 
 -- 
 2.34.1
+
+From 6894dff7cc5a780627e0335e8f5cdc8b353eea53 Mon Sep 17 00:00:00 2001
+Message-Id: <6894dff7cc5a780627e0335e8f5cdc8b353eea53.1696141471.git.opensource206@gmail.com>
+In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
+References: <cover.1696141471.git.opensource206@gmail.com>
+From: Pavan Bobba <opensource206@gmail.com>
+Date: Thu, 28 Sep 2023 18:27:27 +0530
+Subject: [PATCH v4 1/3] staging: vt6655: Type encoding info dropped
+ from array name "abyBBVGA"
+To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
+
+array name "abyBBVGA" 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>
+---
+v1 -> v2 : 1.cover letter added
+           2.patches sent as attachments in a single mail for review
+
+v2 -> v3 : patches sending in a series intead of attachments
+
+v3 -> v4 : version info updated in patchset subject
+
+ drivers/staging/vt6655/baseband.c    | 38 ++++++++++++++--------------
+ drivers/staging/vt6655/channel.c     |  4 +--
+ drivers/staging/vt6655/device.h      |  2 +-
+ drivers/staging/vt6655/device_main.c |  8 +++---
+ 4 files changed, 26 insertions(+), 26 deletions(-)
+
+diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c
+index 0ae2ab3987c6..a19a75f5d761 100644
+--- a/drivers/staging/vt6655/baseband.c
++++ b/drivers/staging/vt6655/baseband.c
+@@ -2016,10 +2016,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
+ 			iowrite32(0x23, iobase + MAC_REG_ITRTMSET);
+ 			vt6655_mac_reg_bits_on(iobase, MAC_REG_PAPEDELAY, BIT(0));
+ 		}
+-		priv->abyBBVGA[0] = 0x18;
+-		priv->abyBBVGA[1] = 0x0A;
+-		priv->abyBBVGA[2] = 0x0;
+-		priv->abyBBVGA[3] = 0x0;
++		priv->bbvga[0] = 0x18;
++		priv->bbvga[1] = 0x0A;
++		priv->bbvga[2] = 0x0;
++		priv->bbvga[3] = 0x0;
+ 		priv->dbm_threshold[0] = -70;
+ 		priv->dbm_threshold[1] = -50;
+ 		priv->dbm_threshold[2] = 0;
+@@ -2034,10 +2034,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
+ 			result &= bb_write_embedded(priv,
+ 				vt3253b0_agc[ii][0], vt3253b0_agc[ii][1]);
+ 
+-		priv->abyBBVGA[0] = 0x1C;
+-		priv->abyBBVGA[1] = 0x10;
+-		priv->abyBBVGA[2] = 0x0;
+-		priv->abyBBVGA[3] = 0x0;
++		priv->bbvga[0] = 0x1C;
++		priv->bbvga[1] = 0x10;
++		priv->bbvga[2] = 0x0;
++		priv->bbvga[3] = 0x0;
+ 		priv->dbm_threshold[0] = -70;
+ 		priv->dbm_threshold[1] = -48;
+ 		priv->dbm_threshold[2] = 0;
+@@ -2056,10 +2056,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
+ 		iowrite8(0x23, iobase + MAC_REG_ITRTMSET);
+ 		vt6655_mac_reg_bits_on(iobase, MAC_REG_PAPEDELAY, BIT(0));
+ 
+-		priv->abyBBVGA[0] = 0x14;
+-		priv->abyBBVGA[1] = 0x0A;
+-		priv->abyBBVGA[2] = 0x0;
+-		priv->abyBBVGA[3] = 0x0;
++		priv->bbvga[0] = 0x14;
++		priv->bbvga[1] = 0x0A;
++		priv->bbvga[2] = 0x0;
++		priv->bbvga[3] = 0x0;
+ 		priv->dbm_threshold[0] = -60;
+ 		priv->dbm_threshold[1] = -50;
+ 		priv->dbm_threshold[2] = 0;
+@@ -2074,10 +2074,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
+ 			result &= bb_write_embedded(priv,
+ 				vt3253b0_agc[ii][0], vt3253b0_agc[ii][1]);
+ 
+-		priv->abyBBVGA[0] = 0x1C;
+-		priv->abyBBVGA[1] = 0x10;
+-		priv->abyBBVGA[2] = 0x0;
+-		priv->abyBBVGA[3] = 0x0;
++		priv->bbvga[0] = 0x1C;
++		priv->bbvga[1] = 0x10;
++		priv->bbvga[2] = 0x0;
++		priv->bbvga[3] = 0x0;
+ 		priv->dbm_threshold[0] = -70;
+ 		priv->dbm_threshold[1] = -48;
+ 		priv->dbm_threshold[2] = 0;
+@@ -2088,7 +2088,7 @@ bool bb_vt3253_init(struct vnt_private *priv)
+ 	} else {
+ 		/* No VGA Table now */
+ 		priv->bUpdateBBVGA = false;
+-		priv->abyBBVGA[0] = 0x1C;
++		priv->bbvga[0] = 0x1C;
+ 	}
+ 
+ 	if (by_local_id > REV_ID_VT3253_A1) {
+@@ -2126,7 +2126,7 @@ bb_set_short_slot_time(struct vnt_private *priv)
+ 
+ 	/* patch for 3253B0 Baseband with Cardbus module */
+ 	bb_read_embedded(priv, 0xE7, &by_bb_vga);
+-	if (by_bb_vga == priv->abyBBVGA[0])
++	if (by_bb_vga == priv->bbvga[0])
+ 		by_bb_rx_conf |= 0x20; /* 0010 0000 */
+ 
+ 	bb_write_embedded(priv, 0x0A, by_bb_rx_conf); /* CR10 */
+@@ -2140,7 +2140,7 @@ void bb_set_vga_gain_offset(struct vnt_private *priv, unsigned char by_data)
+ 
+ 	bb_read_embedded(priv, 0x0A, &by_bb_rx_conf); /* CR10 */
+ 	/* patch for 3253B0 Baseband with Cardbus module */
+-	if (by_data == priv->abyBBVGA[0])
++	if (by_data == priv->bbvga[0])
+ 		by_bb_rx_conf |= 0x20; /* 0010 0000 */
+ 	else if (priv->short_slot_time)
+ 		by_bb_rx_conf &= 0xDF; /* 1101 1111 */
+diff --git a/drivers/staging/vt6655/channel.c b/drivers/staging/vt6655/channel.c
+index e90e0b43505d..e20701815db9 100644
+--- a/drivers/staging/vt6655/channel.c
++++ b/drivers/staging/vt6655/channel.c
+@@ -87,8 +87,8 @@ bool set_channel(struct vnt_private *priv, struct ieee80211_channel *ch)
+ 
+ 	/* Set VGA to max sensitivity */
+ 	if (priv->bUpdateBBVGA &&
+-	    priv->byBBVGACurrent != priv->abyBBVGA[0]) {
+-		priv->byBBVGACurrent = priv->abyBBVGA[0];
++	    priv->byBBVGACurrent != priv->bbvga[0]) {
++		priv->byBBVGACurrent = priv->bbvga[0];
+ 
+ 		bb_set_vga_gain_offset(priv, priv->byBBVGACurrent);
+ 	}
+diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
+index 8c90539cc3d7..b662c74a2dc7 100644
+--- a/drivers/staging/vt6655/device.h
++++ b/drivers/staging/vt6655/device.h
+@@ -250,7 +250,7 @@ struct vnt_private {
+ 	unsigned int	uBBVGADiffCount;
+ 	unsigned char byBBVGANew;
+ 	unsigned char byBBVGACurrent;
+-	unsigned char abyBBVGA[BB_VGA_LEVEL];
++	unsigned char bbvga[BB_VGA_LEVEL];
+ 	long                    dbm_threshold[BB_VGA_LEVEL];
+ 
+ 	unsigned char byBBPreEDRSSI;
+diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
+index f76f482f4c06..385848df8848 100644
+--- a/drivers/staging/vt6655/device_main.c
++++ b/drivers/staging/vt6655/device_main.c
+@@ -424,9 +424,9 @@ static void device_init_registers(struct vnt_private *priv)
+ 	bb_vt3253_init(priv);
+ 
+ 	if (priv->bUpdateBBVGA) {
+-		priv->byBBVGACurrent = priv->abyBBVGA[0];
++		priv->byBBVGACurrent = priv->bbvga[0];
+ 		priv->byBBVGANew = priv->byBBVGACurrent;
+-		bb_set_vga_gain_offset(priv, priv->abyBBVGA[0]);
++		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
+ 	}
+ 
+ 	bb_set_rx_antenna_mode(priv, priv->byRxAntennaMode);
+@@ -1053,7 +1053,7 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
+ 
+ 	for (i = 0; i < BB_VGA_LEVEL; i++) {
+ 		if (dbm < priv->dbm_threshold[i]) {
+-			priv->byBBVGANew = priv->abyBBVGA[i];
++			priv->byBBVGANew = priv->bbvga[i];
+ 			break;
+ 		}
+ 	}
+@@ -1510,7 +1510,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
+ 			priv->short_slot_time = false;
+ 
+ 		CARDbSetPhyParameter(priv, priv->byBBType);
+-		bb_set_vga_gain_offset(priv, priv->abyBBVGA[0]);
++		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
+ 	}
+ 
+ 	if (changed & BSS_CHANGED_TXPOWER)
+-- 
+2.34.1
+
+From d40eb60e6cccf2b5432904abb74bc009fac5e2e1 Mon Sep 17 00:00:00 2001
+Message-Id: <d40eb60e6cccf2b5432904abb74bc009fac5e2e1.1696141471.git.opensource206@gmail.com>
+In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
+References: <cover.1696141471.git.opensource206@gmail.com>
+From: Pavan Bobba <opensource206@gmail.com>
+Date: Thu, 28 Sep 2023 20:26:02 +0530
+Subject: [PATCH v4 2/3] staging: vt6655: Type encoding info dropped
+ from variable name "byBBVGACurrent"
+To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
+
+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>
+---
+v1 -> v2 : 1.cover letter added
+           2.patches sent as attachments in a single mail for review
+
+v2 -> v3 : patches sending in a series intead of attachments
+
+v3 -> v4 : version info updated in patchset subject
+ 
+ drivers/staging/vt6655/baseband.c    |  2 +-
+ drivers/staging/vt6655/channel.c     |  6 +++---
+ drivers/staging/vt6655/device.h      |  2 +-
+ drivers/staging/vt6655/device_main.c | 10 +++++-----
+ 4 files changed, 10 insertions(+), 10 deletions(-)
+
+diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c
+index a19a75f5d761..7d47b266b87e 100644
+--- a/drivers/staging/vt6655/baseband.c
++++ b/drivers/staging/vt6655/baseband.c
+@@ -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 */
+ }
+ 
+diff --git a/drivers/staging/vt6655/channel.c b/drivers/staging/vt6655/channel.c
+index e20701815db9..6ac7d470c041 100644
+--- a/drivers/staging/vt6655/channel.c
++++ b/drivers/staging/vt6655/channel.c
+@@ -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 */
+diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
+index b662c74a2dc7..9ae7171d02ee 100644
+--- a/drivers/staging/vt6655/device.h
++++ b/drivers/staging/vt6655/device.h
+@@ -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];
+ 
+diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
+index 385848df8848..6990129ceb10 100644
+--- a/drivers/staging/vt6655/device_main.c
++++ b/drivers/staging/vt6655/device_main.c
+@@ -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);
+-- 
+2.34.1
+
+From e7dc405ffa8050eb8693086204c902a723392a62 Mon Sep 17 00:00:00 2001
+Message-Id: <e7dc405ffa8050eb8693086204c902a723392a62.1696141471.git.opensource206@gmail.com>
+In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
+References: <cover.1696141471.git.opensource206@gmail.com>
+From: Pavan Bobba <opensource206@gmail.com>
+Date: Thu, 28 Sep 2023 20:30:34 +0530
+Subject: [PATCH v4 3/3] staging: vt6655: Type encoding info dropped
+ from variable name "byBBVGANew"
+To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
+
+variable name "byBBVGANew" 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>
+---
+v1 -> v2 : 1.cover letter added
+           2.patches sent as attachments in a single mail for review
+
+v2 -> v3 : patches sending in a series intead of attachments
+
+v3 -> v4 : version info updated in patchset subject
+ 
+ drivers/staging/vt6655/device.h      |  2 +-
+ drivers/staging/vt6655/device_main.c | 14 +++++++-------
+ 2 files changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
+index 9ae7171d02ee..68bfadacfa7c 100644
+--- a/drivers/staging/vt6655/device.h
++++ b/drivers/staging/vt6655/device.h
+@@ -248,7 +248,7 @@ struct vnt_private {
+ 	/* For Update BaseBand VGA Gain Offset */
+ 	bool bUpdateBBVGA;
+ 	unsigned int	uBBVGADiffCount;
+-	unsigned char byBBVGANew;
++	unsigned char bbvga_new;
+ 	unsigned char bbvga_current;
+ 	unsigned char bbvga[BB_VGA_LEVEL];
+ 	long                    dbm_threshold[BB_VGA_LEVEL];
+diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
+index 6990129ceb10..b08fcf7e6edc 100644
+--- a/drivers/staging/vt6655/device_main.c
++++ b/drivers/staging/vt6655/device_main.c
+@@ -425,7 +425,7 @@ static void device_init_registers(struct vnt_private *priv)
+ 
+ 	if (priv->bUpdateBBVGA) {
+ 		priv->bbvga_current = priv->bbvga[0];
+-		priv->byBBVGANew = priv->bbvga_current;
++		priv->bbvga_new = priv->bbvga_current;
+ 		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
+ 	}
+ 
+@@ -1053,12 +1053,12 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
+ 
+ 	for (i = 0; i < BB_VGA_LEVEL; i++) {
+ 		if (dbm < priv->dbm_threshold[i]) {
+-			priv->byBBVGANew = priv->bbvga[i];
++			priv->bbvga_new = priv->bbvga[i];
+ 			break;
+ 		}
+ 	}
+ 
+-	if (priv->byBBVGANew == priv->bbvga_current) {
++	if (priv->bbvga_new == priv->bbvga_current) {
+ 		priv->uBBVGADiffCount = 1;
+ 		return;
+ 	}
+@@ -1067,11 +1067,11 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
+ 
+ 	if (priv->uBBVGADiffCount == 1) {
+ 		/* first VGA diff gain */
+-		bb_set_vga_gain_offset(priv, priv->byBBVGANew);
++		bb_set_vga_gain_offset(priv, priv->bbvga_new);
+ 
+ 		dev_dbg(&priv->pcid->dev,
+ 			"First RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
+-			(int)dbm, priv->byBBVGANew,
++			(int)dbm, priv->bbvga_new,
+ 			priv->bbvga_current,
+ 			(int)priv->uBBVGADiffCount);
+ 	}
+@@ -1079,11 +1079,11 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
+ 	if (priv->uBBVGADiffCount >= BB_VGA_CHANGE_THRESHOLD) {
+ 		dev_dbg(&priv->pcid->dev,
+ 			"RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
+-			(int)dbm, priv->byBBVGANew,
++			(int)dbm, priv->bbvga_new,
+ 			priv->bbvga_current,
+ 			(int)priv->uBBVGADiffCount);
+ 
+-		bb_set_vga_gain_offset(priv, priv->byBBVGANew);
++		bb_set_vga_gain_offset(priv, priv->bbvga_new);
+ 	}
+ }
+ 
+-- 
+2.34.1
diff --git a/a/2.hdr b/a/2.hdr
deleted file mode 100644
index df4c76b..0000000
--- a/a/2.hdr
+++ /dev/null
@@ -1,3 +0,0 @@
-Content-Type: text/x-diff; charset=us-ascii
-Content-Disposition: attachment;
-	filename="0001-PATCH-1-3-staging-vt6655-Type-encoding-info-dropped-.patch"
diff --git a/a/2.txt b/a/2.txt
deleted file mode 100644
index 2c4a1f2..0000000
--- a/a/2.txt
+++ /dev/null
@@ -1,180 +0,0 @@
-From 6894dff7cc5a780627e0335e8f5cdc8b353eea53 Mon Sep 17 00:00:00 2001
-Message-Id: <6894dff7cc5a780627e0335e8f5cdc8b353eea53.1696141471.git.opensource206@gmail.com>
-In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
-References: <cover.1696141471.git.opensource206@gmail.com>
-From: Pavan Bobba <opensource206@gmail.com>
-Date: Thu, 28 Sep 2023 18:27:27 +0530
-Subject: [PATCH 1/3] [PATCH 1/3] staging: vt6655: Type encoding info dropped
- from array name "abyBBVGA"
-To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
-
-array name "abyBBVGA" 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>
----
- drivers/staging/vt6655/baseband.c    | 38 ++++++++++++++--------------
- drivers/staging/vt6655/channel.c     |  4 +--
- drivers/staging/vt6655/device.h      |  2 +-
- drivers/staging/vt6655/device_main.c |  8 +++---
- 4 files changed, 26 insertions(+), 26 deletions(-)
-
-diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c
-index 0ae2ab3987c6..a19a75f5d761 100644
---- a/drivers/staging/vt6655/baseband.c
-+++ b/drivers/staging/vt6655/baseband.c
-@@ -2016,10 +2016,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
- 			iowrite32(0x23, iobase + MAC_REG_ITRTMSET);
- 			vt6655_mac_reg_bits_on(iobase, MAC_REG_PAPEDELAY, BIT(0));
- 		}
--		priv->abyBBVGA[0] = 0x18;
--		priv->abyBBVGA[1] = 0x0A;
--		priv->abyBBVGA[2] = 0x0;
--		priv->abyBBVGA[3] = 0x0;
-+		priv->bbvga[0] = 0x18;
-+		priv->bbvga[1] = 0x0A;
-+		priv->bbvga[2] = 0x0;
-+		priv->bbvga[3] = 0x0;
- 		priv->dbm_threshold[0] = -70;
- 		priv->dbm_threshold[1] = -50;
- 		priv->dbm_threshold[2] = 0;
-@@ -2034,10 +2034,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
- 			result &= bb_write_embedded(priv,
- 				vt3253b0_agc[ii][0], vt3253b0_agc[ii][1]);
- 
--		priv->abyBBVGA[0] = 0x1C;
--		priv->abyBBVGA[1] = 0x10;
--		priv->abyBBVGA[2] = 0x0;
--		priv->abyBBVGA[3] = 0x0;
-+		priv->bbvga[0] = 0x1C;
-+		priv->bbvga[1] = 0x10;
-+		priv->bbvga[2] = 0x0;
-+		priv->bbvga[3] = 0x0;
- 		priv->dbm_threshold[0] = -70;
- 		priv->dbm_threshold[1] = -48;
- 		priv->dbm_threshold[2] = 0;
-@@ -2056,10 +2056,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
- 		iowrite8(0x23, iobase + MAC_REG_ITRTMSET);
- 		vt6655_mac_reg_bits_on(iobase, MAC_REG_PAPEDELAY, BIT(0));
- 
--		priv->abyBBVGA[0] = 0x14;
--		priv->abyBBVGA[1] = 0x0A;
--		priv->abyBBVGA[2] = 0x0;
--		priv->abyBBVGA[3] = 0x0;
-+		priv->bbvga[0] = 0x14;
-+		priv->bbvga[1] = 0x0A;
-+		priv->bbvga[2] = 0x0;
-+		priv->bbvga[3] = 0x0;
- 		priv->dbm_threshold[0] = -60;
- 		priv->dbm_threshold[1] = -50;
- 		priv->dbm_threshold[2] = 0;
-@@ -2074,10 +2074,10 @@ bool bb_vt3253_init(struct vnt_private *priv)
- 			result &= bb_write_embedded(priv,
- 				vt3253b0_agc[ii][0], vt3253b0_agc[ii][1]);
- 
--		priv->abyBBVGA[0] = 0x1C;
--		priv->abyBBVGA[1] = 0x10;
--		priv->abyBBVGA[2] = 0x0;
--		priv->abyBBVGA[3] = 0x0;
-+		priv->bbvga[0] = 0x1C;
-+		priv->bbvga[1] = 0x10;
-+		priv->bbvga[2] = 0x0;
-+		priv->bbvga[3] = 0x0;
- 		priv->dbm_threshold[0] = -70;
- 		priv->dbm_threshold[1] = -48;
- 		priv->dbm_threshold[2] = 0;
-@@ -2088,7 +2088,7 @@ bool bb_vt3253_init(struct vnt_private *priv)
- 	} else {
- 		/* No VGA Table now */
- 		priv->bUpdateBBVGA = false;
--		priv->abyBBVGA[0] = 0x1C;
-+		priv->bbvga[0] = 0x1C;
- 	}
- 
- 	if (by_local_id > REV_ID_VT3253_A1) {
-@@ -2126,7 +2126,7 @@ bb_set_short_slot_time(struct vnt_private *priv)
- 
- 	/* patch for 3253B0 Baseband with Cardbus module */
- 	bb_read_embedded(priv, 0xE7, &by_bb_vga);
--	if (by_bb_vga == priv->abyBBVGA[0])
-+	if (by_bb_vga == priv->bbvga[0])
- 		by_bb_rx_conf |= 0x20; /* 0010 0000 */
- 
- 	bb_write_embedded(priv, 0x0A, by_bb_rx_conf); /* CR10 */
-@@ -2140,7 +2140,7 @@ void bb_set_vga_gain_offset(struct vnt_private *priv, unsigned char by_data)
- 
- 	bb_read_embedded(priv, 0x0A, &by_bb_rx_conf); /* CR10 */
- 	/* patch for 3253B0 Baseband with Cardbus module */
--	if (by_data == priv->abyBBVGA[0])
-+	if (by_data == priv->bbvga[0])
- 		by_bb_rx_conf |= 0x20; /* 0010 0000 */
- 	else if (priv->short_slot_time)
- 		by_bb_rx_conf &= 0xDF; /* 1101 1111 */
-diff --git a/drivers/staging/vt6655/channel.c b/drivers/staging/vt6655/channel.c
-index e90e0b43505d..e20701815db9 100644
---- a/drivers/staging/vt6655/channel.c
-+++ b/drivers/staging/vt6655/channel.c
-@@ -87,8 +87,8 @@ bool set_channel(struct vnt_private *priv, struct ieee80211_channel *ch)
- 
- 	/* Set VGA to max sensitivity */
- 	if (priv->bUpdateBBVGA &&
--	    priv->byBBVGACurrent != priv->abyBBVGA[0]) {
--		priv->byBBVGACurrent = priv->abyBBVGA[0];
-+	    priv->byBBVGACurrent != priv->bbvga[0]) {
-+		priv->byBBVGACurrent = priv->bbvga[0];
- 
- 		bb_set_vga_gain_offset(priv, priv->byBBVGACurrent);
- 	}
-diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
-index 8c90539cc3d7..b662c74a2dc7 100644
---- a/drivers/staging/vt6655/device.h
-+++ b/drivers/staging/vt6655/device.h
-@@ -250,7 +250,7 @@ struct vnt_private {
- 	unsigned int	uBBVGADiffCount;
- 	unsigned char byBBVGANew;
- 	unsigned char byBBVGACurrent;
--	unsigned char abyBBVGA[BB_VGA_LEVEL];
-+	unsigned char bbvga[BB_VGA_LEVEL];
- 	long                    dbm_threshold[BB_VGA_LEVEL];
- 
- 	unsigned char byBBPreEDRSSI;
-diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
-index f76f482f4c06..385848df8848 100644
---- a/drivers/staging/vt6655/device_main.c
-+++ b/drivers/staging/vt6655/device_main.c
-@@ -424,9 +424,9 @@ static void device_init_registers(struct vnt_private *priv)
- 	bb_vt3253_init(priv);
- 
- 	if (priv->bUpdateBBVGA) {
--		priv->byBBVGACurrent = priv->abyBBVGA[0];
-+		priv->byBBVGACurrent = priv->bbvga[0];
- 		priv->byBBVGANew = priv->byBBVGACurrent;
--		bb_set_vga_gain_offset(priv, priv->abyBBVGA[0]);
-+		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
- 	}
- 
- 	bb_set_rx_antenna_mode(priv, priv->byRxAntennaMode);
-@@ -1053,7 +1053,7 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
- 
- 	for (i = 0; i < BB_VGA_LEVEL; i++) {
- 		if (dbm < priv->dbm_threshold[i]) {
--			priv->byBBVGANew = priv->abyBBVGA[i];
-+			priv->byBBVGANew = priv->bbvga[i];
- 			break;
- 		}
- 	}
-@@ -1510,7 +1510,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
- 			priv->short_slot_time = false;
- 
- 		CARDbSetPhyParameter(priv, priv->byBBType);
--		bb_set_vga_gain_offset(priv, priv->abyBBVGA[0]);
-+		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
- 	}
- 
- 	if (changed & BSS_CHANGED_TXPOWER)
--- 
-2.34.1
diff --git a/a/3.hdr b/a/3.hdr
deleted file mode 100644
index d159a75..0000000
--- a/a/3.hdr
+++ /dev/null
@@ -1,3 +0,0 @@
-Content-Type: text/x-diff; charset=us-ascii
-Content-Disposition: attachment;
-	filename="0002-PATCH-2-3-staging-vt6655-Type-encoding-info-dropped-.patch"
diff --git a/a/3.txt b/a/3.txt
deleted file mode 100644
index 7fce9e6..0000000
--- a/a/3.txt
+++ /dev/null
@@ -1,113 +0,0 @@
-From d40eb60e6cccf2b5432904abb74bc009fac5e2e1 Mon Sep 17 00:00:00 2001
-Message-Id: <d40eb60e6cccf2b5432904abb74bc009fac5e2e1.1696141471.git.opensource206@gmail.com>
-In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
-References: <cover.1696141471.git.opensource206@gmail.com>
-From: Pavan Bobba <opensource206@gmail.com>
-Date: Thu, 28 Sep 2023 20:26:02 +0530
-Subject: [PATCH 2/3] [PATCH 2/3] staging: vt6655: Type encoding info dropped
- from variable name "byBBVGACurrent"
-To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
-
-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>
----
- drivers/staging/vt6655/baseband.c    |  2 +-
- drivers/staging/vt6655/channel.c     |  6 +++---
- drivers/staging/vt6655/device.h      |  2 +-
- drivers/staging/vt6655/device_main.c | 10 +++++-----
- 4 files changed, 10 insertions(+), 10 deletions(-)
-
-diff --git a/drivers/staging/vt6655/baseband.c b/drivers/staging/vt6655/baseband.c
-index a19a75f5d761..7d47b266b87e 100644
---- a/drivers/staging/vt6655/baseband.c
-+++ b/drivers/staging/vt6655/baseband.c
-@@ -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 */
- }
- 
-diff --git a/drivers/staging/vt6655/channel.c b/drivers/staging/vt6655/channel.c
-index e20701815db9..6ac7d470c041 100644
---- a/drivers/staging/vt6655/channel.c
-+++ b/drivers/staging/vt6655/channel.c
-@@ -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 */
-diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
-index b662c74a2dc7..9ae7171d02ee 100644
---- a/drivers/staging/vt6655/device.h
-+++ b/drivers/staging/vt6655/device.h
-@@ -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];
- 
-diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
-index 385848df8848..6990129ceb10 100644
---- a/drivers/staging/vt6655/device_main.c
-+++ b/drivers/staging/vt6655/device_main.c
-@@ -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);
--- 
-2.34.1
diff --git a/a/4.hdr b/a/4.hdr
deleted file mode 100644
index 31f6d00..0000000
--- a/a/4.hdr
+++ /dev/null
@@ -1,3 +0,0 @@
-Content-Type: text/x-diff; charset=us-ascii
-Content-Disposition: attachment;
-	filename="0003-PATCH-3-3-staging-vt6655-Type-encoding-info-dropped-.patch"
diff --git a/a/4.txt b/a/4.txt
deleted file mode 100644
index 7f25aa8..0000000
--- a/a/4.txt
+++ /dev/null
@@ -1,94 +0,0 @@
-From e7dc405ffa8050eb8693086204c902a723392a62 Mon Sep 17 00:00:00 2001
-Message-Id: <e7dc405ffa8050eb8693086204c902a723392a62.1696141471.git.opensource206@gmail.com>
-In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>
-References: <cover.1696141471.git.opensource206@gmail.com>
-From: Pavan Bobba <opensource206@gmail.com>
-Date: Thu, 28 Sep 2023 20:30:34 +0530
-Subject: [PATCH 3/3] [PATCH 3/3] staging: vt6655: Type encoding info dropped
- from variable name "byBBVGANew"
-To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org
-
-variable name "byBBVGANew" 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>
----
- drivers/staging/vt6655/device.h      |  2 +-
- drivers/staging/vt6655/device_main.c | 14 +++++++-------
- 2 files changed, 8 insertions(+), 8 deletions(-)
-
-diff --git a/drivers/staging/vt6655/device.h b/drivers/staging/vt6655/device.h
-index 9ae7171d02ee..68bfadacfa7c 100644
---- a/drivers/staging/vt6655/device.h
-+++ b/drivers/staging/vt6655/device.h
-@@ -248,7 +248,7 @@ struct vnt_private {
- 	/* For Update BaseBand VGA Gain Offset */
- 	bool bUpdateBBVGA;
- 	unsigned int	uBBVGADiffCount;
--	unsigned char byBBVGANew;
-+	unsigned char bbvga_new;
- 	unsigned char bbvga_current;
- 	unsigned char bbvga[BB_VGA_LEVEL];
- 	long                    dbm_threshold[BB_VGA_LEVEL];
-diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
-index 6990129ceb10..b08fcf7e6edc 100644
---- a/drivers/staging/vt6655/device_main.c
-+++ b/drivers/staging/vt6655/device_main.c
-@@ -425,7 +425,7 @@ static void device_init_registers(struct vnt_private *priv)
- 
- 	if (priv->bUpdateBBVGA) {
- 		priv->bbvga_current = priv->bbvga[0];
--		priv->byBBVGANew = priv->bbvga_current;
-+		priv->bbvga_new = priv->bbvga_current;
- 		bb_set_vga_gain_offset(priv, priv->bbvga[0]);
- 	}
- 
-@@ -1053,12 +1053,12 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
- 
- 	for (i = 0; i < BB_VGA_LEVEL; i++) {
- 		if (dbm < priv->dbm_threshold[i]) {
--			priv->byBBVGANew = priv->bbvga[i];
-+			priv->bbvga_new = priv->bbvga[i];
- 			break;
- 		}
- 	}
- 
--	if (priv->byBBVGANew == priv->bbvga_current) {
-+	if (priv->bbvga_new == priv->bbvga_current) {
- 		priv->uBBVGADiffCount = 1;
- 		return;
- 	}
-@@ -1067,11 +1067,11 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
- 
- 	if (priv->uBBVGADiffCount == 1) {
- 		/* first VGA diff gain */
--		bb_set_vga_gain_offset(priv, priv->byBBVGANew);
-+		bb_set_vga_gain_offset(priv, priv->bbvga_new);
- 
- 		dev_dbg(&priv->pcid->dev,
- 			"First RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
--			(int)dbm, priv->byBBVGANew,
-+			(int)dbm, priv->bbvga_new,
- 			priv->bbvga_current,
- 			(int)priv->uBBVGADiffCount);
- 	}
-@@ -1079,11 +1079,11 @@ static void vnt_check_bb_vga(struct vnt_private *priv)
- 	if (priv->uBBVGADiffCount >= BB_VGA_CHANGE_THRESHOLD) {
- 		dev_dbg(&priv->pcid->dev,
- 			"RSSI[%d] NewGain[%d] OldGain[%d] Count[%d]\n",
--			(int)dbm, priv->byBBVGANew,
-+			(int)dbm, priv->bbvga_new,
- 			priv->bbvga_current,
- 			(int)priv->uBBVGADiffCount);
- 
--		bb_set_vga_gain_offset(priv, priv->byBBVGANew);
-+		bb_set_vga_gain_offset(priv, priv->bbvga_new);
- 	}
- }
- 
--- 
-2.34.1
diff --git a/a/content_digest b/N2/content_digest
index 117707f..02c82bb 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,10 +1,10 @@
  "From\0Pavan Bobba <opensource206@gmail.com>\0"
- "Subject\0[PATCH 0/3] Type encoding info dropped from arrary name \"abyBBVGA\" and variable names \"byBBVGACurrent\", \"byBBVGANew\"\0"
- "Date\0Sun, 1 Oct 2023 12:13:14 +0530\0"
+ "Subject\0[PATCH v4 0/3] Type encoding info dropped from arrary name \"abyBBVGA\" and variable names \"byBBVGACurrent\", \"byBBVGANew\"\0"
+ "Date\0Tue, 3 Oct 2023 19:51:22 +0530\0"
  "To\0Greg Kroah-Hartman <gregkh@linuxfoundation.org>"
   linux-staging@lists.linux.dev
  " linux-kernel@vger.kernel.org\0"
- "\01:1\0"
+ "\00:1\0"
  "b\0"
  "This patchset series consist of fixes to issues found by checkpatch\n"
  "\n"
@@ -22,17 +22,15 @@
  " 4 files changed, 38 insertions(+), 38 deletions(-)\n"
  "\n"
  "-- \n"
- 2.34.1
- "\01:2\0"
- "fn\00001-PATCH-1-3-staging-vt6655-Type-encoding-info-dropped-.patch\0"
- "b\0"
+ "2.34.1\n"
+ "\n"
  "From 6894dff7cc5a780627e0335e8f5cdc8b353eea53 Mon Sep 17 00:00:00 2001\n"
  "Message-Id: <6894dff7cc5a780627e0335e8f5cdc8b353eea53.1696141471.git.opensource206@gmail.com>\n"
  "In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>\n"
  "References: <cover.1696141471.git.opensource206@gmail.com>\n"
  "From: Pavan Bobba <opensource206@gmail.com>\n"
  "Date: Thu, 28 Sep 2023 18:27:27 +0530\n"
- "Subject: [PATCH 1/3] [PATCH 1/3] staging: vt6655: Type encoding info dropped\n"
+ "Subject: [PATCH v4 1/3] staging: vt6655: Type encoding info dropped\n"
  " from array name \"abyBBVGA\"\n"
  "To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org\n"
  "\n"
@@ -45,6 +43,13 @@
  "\n"
  "Signed-off-by: Pavan Bobba <opensource206@gmail.com>\n"
  "---\n"
+ "v1 -> v2 : 1.cover letter added\n"
+ "           2.patches sent as attachments in a single mail for review\n"
+ "\n"
+ "v2 -> v3 : patches sending in a series intead of attachments\n"
+ "\n"
+ "v3 -> v4 : version info updated in patchset subject\n"
+ "\n"
  " drivers/staging/vt6655/baseband.c    | 38 ++++++++++++++--------------\n"
  " drivers/staging/vt6655/channel.c     |  4 +--\n"
  " drivers/staging/vt6655/device.h      |  2 +-\n"
@@ -205,17 +210,15 @@
  " \n"
  " \tif (changed & BSS_CHANGED_TXPOWER)\n"
  "-- \n"
- 2.34.1
- "\01:3\0"
- "fn\00002-PATCH-2-3-staging-vt6655-Type-encoding-info-dropped-.patch\0"
- "b\0"
+ "2.34.1\n"
+ "\n"
  "From d40eb60e6cccf2b5432904abb74bc009fac5e2e1 Mon Sep 17 00:00:00 2001\n"
  "Message-Id: <d40eb60e6cccf2b5432904abb74bc009fac5e2e1.1696141471.git.opensource206@gmail.com>\n"
  "In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>\n"
  "References: <cover.1696141471.git.opensource206@gmail.com>\n"
  "From: Pavan Bobba <opensource206@gmail.com>\n"
  "Date: Thu, 28 Sep 2023 20:26:02 +0530\n"
- "Subject: [PATCH 2/3] [PATCH 2/3] staging: vt6655: Type encoding info dropped\n"
+ "Subject: [PATCH v4 2/3] staging: vt6655: Type encoding info dropped\n"
  " from variable name \"byBBVGACurrent\"\n"
  "To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org\n"
  "\n"
@@ -228,6 +231,13 @@
  "\n"
  "Signed-off-by: Pavan Bobba <opensource206@gmail.com>\n"
  "---\n"
+ "v1 -> v2 : 1.cover letter added\n"
+ "           2.patches sent as attachments in a single mail for review\n"
+ "\n"
+ "v2 -> v3 : patches sending in a series intead of attachments\n"
+ "\n"
+ "v3 -> v4 : version info updated in patchset subject\n"
+ " \n"
  " drivers/staging/vt6655/baseband.c    |  2 +-\n"
  " drivers/staging/vt6655/channel.c     |  6 +++---\n"
  " drivers/staging/vt6655/device.h      |  2 +-\n"
@@ -321,17 +331,15 @@
  " \n"
  " \t\tbb_set_vga_gain_offset(priv, priv->byBBVGANew);\n"
  "-- \n"
- 2.34.1
- "\01:4\0"
- "fn\00003-PATCH-3-3-staging-vt6655-Type-encoding-info-dropped-.patch\0"
- "b\0"
+ "2.34.1\n"
+ "\n"
  "From e7dc405ffa8050eb8693086204c902a723392a62 Mon Sep 17 00:00:00 2001\n"
  "Message-Id: <e7dc405ffa8050eb8693086204c902a723392a62.1696141471.git.opensource206@gmail.com>\n"
  "In-Reply-To: <cover.1696141471.git.opensource206@gmail.com>\n"
  "References: <cover.1696141471.git.opensource206@gmail.com>\n"
  "From: Pavan Bobba <opensource206@gmail.com>\n"
  "Date: Thu, 28 Sep 2023 20:30:34 +0530\n"
- "Subject: [PATCH 3/3] [PATCH 3/3] staging: vt6655: Type encoding info dropped\n"
+ "Subject: [PATCH v4 3/3] staging: vt6655: Type encoding info dropped\n"
  " from variable name \"byBBVGANew\"\n"
  "To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,linux-staging@lists.linux.dev,linux-kernel@vger.kernel.org\n"
  "\n"
@@ -344,6 +352,13 @@
  "\n"
  "Signed-off-by: Pavan Bobba <opensource206@gmail.com>\n"
  "---\n"
+ "v1 -> v2 : 1.cover letter added\n"
+ "           2.patches sent as attachments in a single mail for review\n"
+ "\n"
+ "v2 -> v3 : patches sending in a series intead of attachments\n"
+ "\n"
+ "v3 -> v4 : version info updated in patchset subject\n"
+ " \n"
  " drivers/staging/vt6655/device.h      |  2 +-\n"
  " drivers/staging/vt6655/device_main.c | 14 +++++++-------\n"
  " 2 files changed, 8 insertions(+), 8 deletions(-)\n"
@@ -420,4 +435,4 @@
  "-- \n"
  2.34.1
 
-05c2279868f1821edd7e7afadb5d8e786d40f89de86bc3eb66afddba4b18ecf8
+e4d8bb385cb652ab106ebac698f39cd3179f3b2f370be26d7e00f68da9adc030

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.