linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic"
@ 2018-05-31 11:03 Sabin Mihai Rapan
  2018-05-31 11:03 ` [PATCH 2/3] staging: rtlwifi: Fix "writen"->"written" Sabin Mihai Rapan
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Sabin Mihai Rapan @ 2018-05-31 11:03 UTC (permalink / raw)
  To: gregkh, Larry.Finger; +Cc: linux-kernel, kernel-janitors, Sabin Mihai Rapan

Trivial fix to spelling mistake in comment text.

Signed-off-by: Sabin Mihai Rapan <sabin.rapan@gmail.com>
---
 drivers/staging/rtlwifi/phydm/phydm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtlwifi/phydm/phydm.c b/drivers/staging/rtlwifi/phydm/phydm.c
index 8b2a180cc13c..2b61b12e6b21 100644
--- a/drivers/staging/rtlwifi/phydm/phydm.c
+++ b/drivers/staging/rtlwifi/phydm/phydm.c
@@ -160,7 +160,7 @@ static void phydm_traffic_load_decision(void *dm_void)
 {
 	struct phy_dm_struct *dm = (struct phy_dm_struct *)dm_void;
 
-	/*---TP & Trafic-load calculation---*/
+	/*---TP & Traffic-load calculation---*/
 
 	if (dm->last_tx_ok_cnt > *dm->num_tx_bytes_unicast)
 		dm->last_tx_ok_cnt = *dm->num_tx_bytes_unicast;
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 2/3] staging: rtlwifi: Fix "writen"->"written"
  2018-05-31 11:03 [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic" Sabin Mihai Rapan
@ 2018-05-31 11:03 ` Sabin Mihai Rapan
  2018-05-31 11:03 ` [PATCH 3/3] staging: rtlwifi: Fix "Alwyas"->"Always" Sabin Mihai Rapan
  2018-05-31 16:57 ` [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic" Greg KH
  2 siblings, 0 replies; 9+ messages in thread
From: Sabin Mihai Rapan @ 2018-05-31 11:03 UTC (permalink / raw)
  To: gregkh, Larry.Finger; +Cc: linux-kernel, kernel-janitors, Sabin Mihai Rapan

Trivial fix to spelling mistake in comment text.

Signed-off-by: Sabin Mihai Rapan <sabin.rapan@gmail.com>
---
 drivers/staging/rtlwifi/rtl8822be/fw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtlwifi/rtl8822be/fw.c b/drivers/staging/rtlwifi/rtl8822be/fw.c
index 483ea85943c3..55b5c9df9d81 100644
--- a/drivers/staging/rtlwifi/rtl8822be/fw.c
+++ b/drivers/staging/rtlwifi/rtl8822be/fw.c
@@ -93,7 +93,7 @@ static void _rtl8822be_fill_h2c_command(struct ieee80211_hw *hw, u8 element_id,
 	}
 
 	while (!bwrite_success) {
-		/* 2. Find the last BOX number which has been writen. */
+		/* 2. Find the last BOX number which has been written. */
 		boxnum = rtlhal->last_hmeboxnum;
 		switch (boxnum) {
 		case 0:
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH 3/3] staging: rtlwifi: Fix "Alwyas"->"Always"
  2018-05-31 11:03 [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic" Sabin Mihai Rapan
  2018-05-31 11:03 ` [PATCH 2/3] staging: rtlwifi: Fix "writen"->"written" Sabin Mihai Rapan
@ 2018-05-31 11:03 ` Sabin Mihai Rapan
  2018-05-31 16:57 ` [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic" Greg KH
  2 siblings, 0 replies; 9+ messages in thread
From: Sabin Mihai Rapan @ 2018-05-31 11:03 UTC (permalink / raw)
  To: gregkh, Larry.Finger; +Cc: linux-kernel, kernel-janitors, Sabin Mihai Rapan

Trivial fix to spelling mistake in comment text.

Signed-off-by: Sabin Mihai Rapan <sabin.rapan@gmail.com>
---
 drivers/staging/rtlwifi/rtl8822be/sw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtlwifi/rtl8822be/sw.c b/drivers/staging/rtlwifi/rtl8822be/sw.c
index 91b784b6d1c5..68629728ec4b 100644
--- a/drivers/staging/rtlwifi/rtl8822be/sw.c
+++ b/drivers/staging/rtlwifi/rtl8822be/sw.c
@@ -54,7 +54,7 @@ static void rtl8822be_init_aspm_vars(struct ieee80211_hw *hw)
 	 * 0 - Disable ASPM,
 	 * 1 - Enable ASPM without Clock Req,
 	 * 2 - Enable ASPM with Clock Req,
-	 * 3 - Alwyas Enable ASPM with Clock Req,
+	 * 3 - Always Enable ASPM with Clock Req,
 	 * 4 - Always Enable ASPM without Clock Req.
 	 * set default to RTL8822BE:3 RTL8822B:2
 	 *
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic"
  2018-05-31 11:03 [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic" Sabin Mihai Rapan
  2018-05-31 11:03 ` [PATCH 2/3] staging: rtlwifi: Fix "writen"->"written" Sabin Mihai Rapan
  2018-05-31 11:03 ` [PATCH 3/3] staging: rtlwifi: Fix "Alwyas"->"Always" Sabin Mihai Rapan
@ 2018-05-31 16:57 ` Greg KH
  2018-05-31 19:48   ` Sabin Mihai Rapan
  2 siblings, 1 reply; 9+ messages in thread
From: Greg KH @ 2018-05-31 16:57 UTC (permalink / raw)
  To: Sabin Mihai Rapan; +Cc: Larry.Finger, linux-kernel, kernel-janitors

On Thu, May 31, 2018 at 01:03:12PM +0200, Sabin Mihai Rapan wrote:
> Trivial fix to spelling mistake in comment text.
> 
> Signed-off-by: Sabin Mihai Rapan <sabin.rapan@gmail.com>
> ---
>  drivers/staging/rtlwifi/phydm/phydm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

You sent a previous set of 4 patches with these same exact subject lines
:(

I've now dropped both of these series from my pending queue, please fix
up the subject lines and resend all of them at once.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic"
  2018-05-31 16:57 ` [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic" Greg KH
@ 2018-05-31 19:48   ` Sabin Mihai Rapan
  2018-06-01  6:07     ` Greg KH
  0 siblings, 1 reply; 9+ messages in thread
From: Sabin Mihai Rapan @ 2018-05-31 19:48 UTC (permalink / raw)
  To: Greg KH; +Cc: Larry.Finger, linux-kernel, kernel-janitors

In the first patch series I forgot to CC linux-kernel@vger.kernel.org and
assumed (wrongly) that the patch series will be ignored.
In an attempt to fix that, I sent the second patch series with proper
CC added. I should have sent it as a reply to the first one and version
it.
I will do as you said and resend the patch series.

Sabin.

On 05/31/2018 06:57 PM, Greg KH wrote:
> On Thu, May 31, 2018 at 01:03:12PM +0200, Sabin Mihai Rapan wrote:
>> Trivial fix to spelling mistake in comment text.
>>
>> Signed-off-by: Sabin Mihai Rapan <sabin.rapan@gmail.com>
>> ---
>>  drivers/staging/rtlwifi/phydm/phydm.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> You sent a previous set of 4 patches with these same exact subject lines
> :(
> 
> I've now dropped both of these series from my pending queue, please fix
> up the subject lines and resend all of them at once.
> 
> thanks,
> 
> greg k-h
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic"
  2018-05-31 19:48   ` Sabin Mihai Rapan
@ 2018-06-01  6:07     ` Greg KH
  2018-06-02  9:04       ` [PATCH v2 " Sabin Mihai Rapan
  0 siblings, 1 reply; 9+ messages in thread
From: Greg KH @ 2018-06-01  6:07 UTC (permalink / raw)
  To: Sabin Mihai Rapan; +Cc: Larry.Finger, linux-kernel, kernel-janitors

On Thu, May 31, 2018 at 09:48:23PM +0200, Sabin Mihai Rapan wrote:
> In the first patch series I forgot to CC linux-kernel@vger.kernel.org and
> assumed (wrongly) that the patch series will be ignored.
> In an attempt to fix that, I sent the second patch series with proper
> CC added. I should have sent it as a reply to the first one and version
> it.
> I will do as you said and resend the patch series.

linux-kernel does not care about staging patches :)

Please use scripts/get_maintainers.pl to determine who to cc: and the
proper mailing list to use.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH v2 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic"
  2018-06-01  6:07     ` Greg KH
@ 2018-06-02  9:04       ` Sabin Mihai Rapan
  2018-06-02  9:04         ` [PATCH v2 2/3] staging: rtlwifi: Fix "writen"->"written" Sabin Mihai Rapan
  2018-06-02  9:04         ` [PATCH v2 3/3] staging: rtlwifi: Fix "Alwyas"->"Always" Sabin Mihai Rapan
  0 siblings, 2 replies; 9+ messages in thread
From: Sabin Mihai Rapan @ 2018-06-02  9:04 UTC (permalink / raw)
  To: gregkh, Larry.Finger
  Cc: devel, linux-kernel, kernel-janitors, Sabin Mihai Rapan

Trivial fix to spelling mistake in comment text.

Signed-off-by: Sabin Mihai Rapan <sabin.rapan@gmail.com>
---
Changes in v2:
 - Added proper to and cc fields to the patch series.

 drivers/staging/rtlwifi/phydm/phydm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtlwifi/phydm/phydm.c b/drivers/staging/rtlwifi/phydm/phydm.c
index 985978d3decc..27635feedba2 100644
--- a/drivers/staging/rtlwifi/phydm/phydm.c
+++ b/drivers/staging/rtlwifi/phydm/phydm.c
@@ -149,7 +149,7 @@ static void phydm_traffic_load_decision(void *dm_void)
 {
 	struct phy_dm_struct *dm = (struct phy_dm_struct *)dm_void;
 
-	/*---TP & Trafic-load calculation---*/
+	/*---TP & Traffic-load calculation---*/
 
 	if (dm->last_tx_ok_cnt > *dm->num_tx_bytes_unicast)
 		dm->last_tx_ok_cnt = *dm->num_tx_bytes_unicast;
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH v2 2/3] staging: rtlwifi: Fix "writen"->"written"
  2018-06-02  9:04       ` [PATCH v2 " Sabin Mihai Rapan
@ 2018-06-02  9:04         ` Sabin Mihai Rapan
  2018-06-02  9:04         ` [PATCH v2 3/3] staging: rtlwifi: Fix "Alwyas"->"Always" Sabin Mihai Rapan
  1 sibling, 0 replies; 9+ messages in thread
From: Sabin Mihai Rapan @ 2018-06-02  9:04 UTC (permalink / raw)
  To: gregkh, Larry.Finger
  Cc: devel, linux-kernel, kernel-janitors, Sabin Mihai Rapan

Trivial fix to spelling mistake in comment text.

Signed-off-by: Sabin Mihai Rapan <sabin.rapan@gmail.com>
---
Changes in v2:
 - Added proper to and cc fields to the patch series.

 drivers/staging/rtlwifi/rtl8822be/fw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtlwifi/rtl8822be/fw.c b/drivers/staging/rtlwifi/rtl8822be/fw.c
index efec7281511c..a40396614814 100644
--- a/drivers/staging/rtlwifi/rtl8822be/fw.c
+++ b/drivers/staging/rtlwifi/rtl8822be/fw.c
@@ -82,7 +82,7 @@ static void _rtl8822be_fill_h2c_command(struct ieee80211_hw *hw, u8 element_id,
 	}
 
 	while (!bwrite_success) {
-		/* 2. Find the last BOX number which has been writen. */
+		/* 2. Find the last BOX number which has been written. */
 		boxnum = rtlhal->last_hmeboxnum;
 		switch (boxnum) {
 		case 0:
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [PATCH v2 3/3] staging: rtlwifi: Fix "Alwyas"->"Always"
  2018-06-02  9:04       ` [PATCH v2 " Sabin Mihai Rapan
  2018-06-02  9:04         ` [PATCH v2 2/3] staging: rtlwifi: Fix "writen"->"written" Sabin Mihai Rapan
@ 2018-06-02  9:04         ` Sabin Mihai Rapan
  1 sibling, 0 replies; 9+ messages in thread
From: Sabin Mihai Rapan @ 2018-06-02  9:04 UTC (permalink / raw)
  To: gregkh, Larry.Finger
  Cc: devel, linux-kernel, kernel-janitors, Sabin Mihai Rapan

Trivial fix to spelling mistake in comment text.

Signed-off-by: Sabin Mihai Rapan <sabin.rapan@gmail.com>
---
Changes in v2:
 - Added proper to and cc fields to the patch series.

 drivers/staging/rtlwifi/rtl8822be/sw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtlwifi/rtl8822be/sw.c b/drivers/staging/rtlwifi/rtl8822be/sw.c
index 7825e85ed091..a2ab19fa94f2 100644
--- a/drivers/staging/rtlwifi/rtl8822be/sw.c
+++ b/drivers/staging/rtlwifi/rtl8822be/sw.c
@@ -43,7 +43,7 @@ static void rtl8822be_init_aspm_vars(struct ieee80211_hw *hw)
 	 * 0 - Disable ASPM,
 	 * 1 - Enable ASPM without Clock Req,
 	 * 2 - Enable ASPM with Clock Req,
-	 * 3 - Alwyas Enable ASPM with Clock Req,
+	 * 3 - Always Enable ASPM with Clock Req,
 	 * 4 - Always Enable ASPM without Clock Req.
 	 * set default to RTL8822BE:3 RTL8822B:2
 	 *
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2018-06-02  9:05 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-31 11:03 [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic" Sabin Mihai Rapan
2018-05-31 11:03 ` [PATCH 2/3] staging: rtlwifi: Fix "writen"->"written" Sabin Mihai Rapan
2018-05-31 11:03 ` [PATCH 3/3] staging: rtlwifi: Fix "Alwyas"->"Always" Sabin Mihai Rapan
2018-05-31 16:57 ` [PATCH 1/3] staging: rtlwifi: Fix "Trafic"->"Traffic" Greg KH
2018-05-31 19:48   ` Sabin Mihai Rapan
2018-06-01  6:07     ` Greg KH
2018-06-02  9:04       ` [PATCH v2 " Sabin Mihai Rapan
2018-06-02  9:04         ` [PATCH v2 2/3] staging: rtlwifi: Fix "writen"->"written" Sabin Mihai Rapan
2018-06-02  9:04         ` [PATCH v2 3/3] staging: rtlwifi: Fix "Alwyas"->"Always" Sabin Mihai Rapan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).