All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/3] Replace "the the " with "the"
@ 2017-03-03 15:34 simran singhal
  2017-03-03 15:34 ` [PATCH v2 1/3] staging: wlan-ng: " simran singhal
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: simran singhal @ 2017-03-03 15:34 UTC (permalink / raw)
  To: gregkh
  Cc: david.kershner, sparmaintainer, devel, linux-kernel,
	Larry.Finger, florian.c.schilhabel, outreachy-kernel

This patch series replace "the the " with "the" in various drivers.

v2:
  -Adding cover-letter for the series.

simran singhal (3):
  staging: wlan-ng: Replace "the the " with "the"
  staging: rtl8192u: Replace "the the " with "the"
  staging: unisys: Replace "the the " with "the"

 drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c | 2 +-
 drivers/staging/unisys/visorbus/visorbus_main.c   | 2 +-
 drivers/staging/wlan-ng/prism2sta.c               | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.7.4



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

* [PATCH v2 1/3] staging: wlan-ng: Replace "the the " with "the"
  2017-03-03 15:34 [PATCH v2 0/3] Replace "the the " with "the" simran singhal
@ 2017-03-03 15:34 ` simran singhal
  2017-03-03 15:34 ` [PATCH v2 2/3] staging: rtl8192u: " simran singhal
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 9+ messages in thread
From: simran singhal @ 2017-03-03 15:34 UTC (permalink / raw)
  To: gregkh
  Cc: david.kershner, sparmaintainer, devel, linux-kernel,
	Larry.Finger, florian.c.schilhabel, outreachy-kernel

This patch replace "the the " with "the". The replacement couldn't be
automated because sometimes the first "the" was meant to be another
word.

Signed-off-by: simran singhal <singhalsimran0@gmail.com>
---
 drivers/staging/wlan-ng/prism2sta.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/wlan-ng/prism2sta.c b/drivers/staging/wlan-ng/prism2sta.c
index 82d3a70..3ef85ac 100644
--- a/drivers/staging/wlan-ng/prism2sta.c
+++ b/drivers/staging/wlan-ng/prism2sta.c
@@ -1310,7 +1310,7 @@ void prism2sta_processing_defer(struct work_struct *data)
 		/* This one indicates that the MAC has decided to and
 		 * successfully completed a change to another AP.  We
 		 * should probably implement a reassociation indication
-		 * in response to this one.  I'm thinking that the the
+		 * in response to this one.  I'm thinking that the
 		 * p80211 layer needs to be notified in case of
 		 * buffering/queueing issues.  User mode also needs to be
 		 * notified so that any BSS dependent elements can be
-- 
2.7.4



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

* [PATCH v2 2/3] staging: rtl8192u: Replace "the the " with "the"
  2017-03-03 15:34 [PATCH v2 0/3] Replace "the the " with "the" simran singhal
  2017-03-03 15:34 ` [PATCH v2 1/3] staging: wlan-ng: " simran singhal
@ 2017-03-03 15:34 ` simran singhal
  2017-03-03 15:35 ` [PATCH v2 3/3] staging: unisys: " simran singhal
  2017-03-03 15:36 ` [PATCH v2 0/3] " SIMRAN SINGHAL
  3 siblings, 0 replies; 9+ messages in thread
From: simran singhal @ 2017-03-03 15:34 UTC (permalink / raw)
  To: gregkh
  Cc: david.kershner, sparmaintainer, devel, linux-kernel,
	Larry.Finger, florian.c.schilhabel, outreachy-kernel

This patch replace "the the " with "the". The replacement couldn't be
automated because sometimes the first "the" was meant to be another
word.

Signed-off-by: simran singhal <singhalsimran0@gmail.com>
---
 drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c
index f0fba81..3ca7f7d 100644
--- a/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c
+++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c
@@ -918,7 +918,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
 
 	int i;
 	struct ieee80211_rxb *rxb = NULL;
-	// cheat the the hdr type
+	// cheat the hdr type
 	hdr = (struct rtl_80211_hdr_4addr *)skb->data;
 	stats = &ieee->stats;
 
-- 
2.7.4



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

* [PATCH v2 3/3] staging: unisys: Replace "the the " with "the"
  2017-03-03 15:34 [PATCH v2 0/3] Replace "the the " with "the" simran singhal
  2017-03-03 15:34 ` [PATCH v2 1/3] staging: wlan-ng: " simran singhal
  2017-03-03 15:34 ` [PATCH v2 2/3] staging: rtl8192u: " simran singhal
@ 2017-03-03 15:35 ` simran singhal
  2017-03-03 15:36 ` [PATCH v2 0/3] " SIMRAN SINGHAL
  3 siblings, 0 replies; 9+ messages in thread
From: simran singhal @ 2017-03-03 15:35 UTC (permalink / raw)
  To: gregkh
  Cc: david.kershner, sparmaintainer, devel, linux-kernel,
	Larry.Finger, florian.c.schilhabel, outreachy-kernel

This patch replace "the the " with "the". The replacement couldn't be
automated because sometimes the first "the" was meant to be another
word.

Signed-off-by: simran singhal <singhalsimran0@gmail.com>
---
 drivers/staging/unisys/visorbus/visorbus_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/unisys/visorbus/visorbus_main.c b/drivers/staging/unisys/visorbus/visorbus_main.c
index 1d54190..e7b04b6 100644
--- a/drivers/staging/unisys/visorbus/visorbus_main.c
+++ b/drivers/staging/unisys/visorbus/visorbus_main.c
@@ -778,7 +778,7 @@ write_vbus_dev_info(struct visorchannel *chan,
 /*
  * fix_vbus_dev_info() - for a child device just created on a client bus, fill
  *                       in information about the driver that is controlling
- *                       this device into the the appropriate slot within the
+ *                       this device into the appropriate slot within the
  *                       vbus channel of the bus instance
  * @visordev: struct visor_device for the desired device
  */
-- 
2.7.4



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

* Re: [PATCH v2 0/3] Replace "the the " with "the"
  2017-03-03 15:34 [PATCH v2 0/3] Replace "the the " with "the" simran singhal
                   ` (2 preceding siblings ...)
  2017-03-03 15:35 ` [PATCH v2 3/3] staging: unisys: " simran singhal
@ 2017-03-03 15:36 ` SIMRAN SINGHAL
  2017-03-03 15:37   ` SIMRAN SINGHAL
  3 siblings, 1 reply; 9+ messages in thread
From: SIMRAN SINGHAL @ 2017-03-03 15:36 UTC (permalink / raw)
  To: outreachy-kernel
  Cc: gregkh, david.kershner, sparmaintainer, devel, linux-kernel,
	Larry.Finger, florian.c.schilhabel


[-- Attachment #1.1: Type: text/plain, Size: 700 bytes --]

Please ignore this patch as on this wrong version is written.

On Friday, March 3, 2017 at 9:05:05 PM UTC+5:30, SIMRAN SINGHAL wrote:
>
> This patch series replace "the the " with "the" in various drivers. 
>
> v2: 
>   -Adding cover-letter for the series. 
>
> simran singhal (3): 
>   staging: wlan-ng: Replace "the the " with "the" 
>   staging: rtl8192u: Replace "the the " with "the" 
>   staging: unisys: Replace "the the " with "the" 
>
>  drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c | 2 +- 
>  drivers/staging/unisys/visorbus/visorbus_main.c   | 2 +- 
>  drivers/staging/wlan-ng/prism2sta.c               | 2 +- 
>  3 files changed, 3 insertions(+), 3 deletions(-) 
>
> -- 
> 2.7.4 
>
>

[-- Attachment #1.2: Type: text/html, Size: 1010 bytes --]

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

* Re: [PATCH v2 0/3] Replace "the the " with "the"
  2017-03-03 15:36 ` [PATCH v2 0/3] " SIMRAN SINGHAL
@ 2017-03-03 15:37   ` SIMRAN SINGHAL
  2017-03-03 15:38     ` [Outreachy kernel] " Julia Lawall
  0 siblings, 1 reply; 9+ messages in thread
From: SIMRAN SINGHAL @ 2017-03-03 15:37 UTC (permalink / raw)
  To: outreachy-kernel
  Cc: gregkh, david.kershner, sparmaintainer, devel, linux-kernel,
	Larry.Finger, florian.c.schilhabel


[-- Attachment #1.1: Type: text/plain, Size: 861 bytes --]

Please ignore this patch as on this wrong version is written.

On Friday, March 3, 2017 at 9:06:52 PM UTC+5:30, SIMRAN SINGHAL wrote:
>
> Please ignore this patch as on this wrong version is written.
>
> On Friday, March 3, 2017 at 9:05:05 PM UTC+5:30, SIMRAN SINGHAL wrote:
>>
>> This patch series replace "the the " with "the" in various drivers. 
>>
>> v2: 
>>   -Adding cover-letter for the series. 
>>
>> simran singhal (3): 
>>   staging: wlan-ng: Replace "the the " with "the" 
>>   staging: rtl8192u: Replace "the the " with "the" 
>>   staging: unisys: Replace "the the " with "the" 
>>
>>  drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c | 2 +- 
>>  drivers/staging/unisys/visorbus/visorbus_main.c   | 2 +- 
>>  drivers/staging/wlan-ng/prism2sta.c               | 2 +- 
>>  3 files changed, 3 insertions(+), 3 deletions(-) 
>>
>> -- 
>> 2.7.4 
>>
>>

[-- Attachment #1.2: Type: text/html, Size: 1294 bytes --]

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

* Re: [Outreachy kernel] Re: [PATCH v2 0/3] Replace "the the " with "the"
  2017-03-03 15:37   ` SIMRAN SINGHAL
@ 2017-03-03 15:38     ` Julia Lawall
  2017-03-03 15:43       ` SIMRAN SINGHAL
  2017-03-03 15:47       ` SIMRAN SINGHAL
  0 siblings, 2 replies; 9+ messages in thread
From: Julia Lawall @ 2017-03-03 15:38 UTC (permalink / raw)
  To: SIMRAN SINGHAL
  Cc: outreachy-kernel, gregkh, david.kershner, sparmaintainer, devel,
	linux-kernel, Larry.Finger, florian.c.schilhabel

[-- Attachment #1: Type: text/plain, Size: 1680 bytes --]



On Fri, 3 Mar 2017, SIMRAN SINGHAL wrote:

> Please ignore this patch as on this wrong version is written.

What is wrong?

julia

>
> On Friday, March 3, 2017 at 9:06:52 PM UTC+5:30, SIMRAN SINGHAL wrote:
>       Please ignore this patch as on this wrong version is written.
>
>       On Friday, March 3, 2017 at 9:05:05 PM UTC+5:30, SIMRAN SINGHAL
>       wrote:
>             This patch series replace "the the " with "the" in
>             various drivers.
>
>             v2:
>               -Adding cover-letter for the series.
>
>             simran singhal (3):
>               staging: wlan-ng: Replace "the the " with "the"
>               staging: rtl8192u: Replace "the the " with "the"
>               staging: unisys: Replace "the the " with "the"
>
>              drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c |
>             2 +-
>              drivers/staging/unisys/visorbus/visorbus_main.c   |
>             2 +-
>              drivers/staging/wlan-ng/prism2sta.c               |
>             2 +-
>              3 files changed, 3 insertions(+), 3 deletions(-)
>
>             --
>             2.7.4
>
> --
> You received this message because you are subscribed to the Google Groups
> "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visithttps://groups.google.com/d/msgid/outreachy-kernel/1c412adb-4f88-47e2-aa29-
> 016e62fc882a%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
>

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

* Re: [Outreachy kernel] Re: [PATCH v2 0/3] Replace "the the " with "the"
  2017-03-03 15:38     ` [Outreachy kernel] " Julia Lawall
@ 2017-03-03 15:43       ` SIMRAN SINGHAL
  2017-03-03 15:47       ` SIMRAN SINGHAL
  1 sibling, 0 replies; 9+ messages in thread
From: SIMRAN SINGHAL @ 2017-03-03 15:43 UTC (permalink / raw)
  To: outreachy-kernel
  Cc: singhalsimran0, gregkh, david.kershner, sparmaintainer, devel,
	linux-kernel, Larry.Finger, florian.c.schilhabel


[-- Attachment #1.1: Type: text/plain, Size: 2018 bytes --]



On Friday, March 3, 2017 at 9:08:49 PM UTC+5:30, Julia Lawall wrote:
>
>
>
> On Fri, 3 Mar 2017, SIMRAN SINGHAL wrote: 
>
> > Please ignore this patch as on this wrong version is written. 
>
> What is wrong? 
>
> Actually this version is supposed to be v1 but by mistake I wrote v2 in 
subject of
all the patches of this series.
 

> julia 
>
> > 
> > On Friday, March 3, 2017 at 9:06:52 PM UTC+5:30, SIMRAN SINGHAL wrote: 
> >       Please ignore this patch as on this wrong version is written. 
> > 
> >       On Friday, March 3, 2017 at 9:05:05 PM UTC+5:30, SIMRAN SINGHAL 
> >       wrote: 
> >             This patch series replace "the the " with "the" in 
> >             various drivers. 
> > 
> >             v2: 
> >               -Adding cover-letter for the series. 
> > 
> >             simran singhal (3): 
> >               staging: wlan-ng: Replace "the the " with "the" 
> >               staging: rtl8192u: Replace "the the " with "the" 
> >               staging: unisys: Replace "the the " with "the" 
> > 
> >              drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c | 
> >             2 +- 
> >              drivers/staging/unisys/visorbus/visorbus_main.c   | 
> >             2 +- 
> >              drivers/staging/wlan-ng/prism2sta.c               | 
> >             2 +- 
> >              3 files changed, 3 insertions(+), 3 deletions(-) 
> > 
> >             -- 
> >             2.7.4 
> > 
> > -- 
> > You received this message because you are subscribed to the Google 
> Groups 
> > "outreachy-kernel" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> an 
> > email to outreachy-kern...@googlegroups.com <javascript:>. 
> > To post to this group, send email to outreach...@googlegroups.com 
> <javascript:>. 
> > To view this discussion on the web visithttps://
> groups.google.com/d/msgid/outreachy-kernel/1c412adb-4f88-47e2-aa29- 
> > 016e62fc882a%40googlegroups.com. 
> > For more options, visit https://groups.google.com/d/optout. 
> > 
> >


[-- Attachment #1.2: Type: text/html, Size: 4218 bytes --]

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

* Re: [Outreachy kernel] Re: [PATCH v2 0/3] Replace "the the " with "the"
  2017-03-03 15:38     ` [Outreachy kernel] " Julia Lawall
  2017-03-03 15:43       ` SIMRAN SINGHAL
@ 2017-03-03 15:47       ` SIMRAN SINGHAL
  1 sibling, 0 replies; 9+ messages in thread
From: SIMRAN SINGHAL @ 2017-03-03 15:47 UTC (permalink / raw)
  To: outreachy-kernel
  Cc: singhalsimran0, gregkh, david.kershner, sparmaintainer, devel,
	linux-kernel, Larry.Finger, florian.c.schilhabel


[-- Attachment #1.1: Type: text/plain, Size: 1916 bytes --]

I have sent the v1.

On Friday, March 3, 2017 at 9:08:49 PM UTC+5:30, Julia Lawall wrote:
>
>
>
> On Fri, 3 Mar 2017, SIMRAN SINGHAL wrote: 
>
> > Please ignore this patch as on this wrong version is written. 
>
> What is wrong? 
>
> julia 
>
> > 
> > On Friday, March 3, 2017 at 9:06:52 PM UTC+5:30, SIMRAN SINGHAL wrote: 
> >       Please ignore this patch as on this wrong version is written. 
> > 
> >       On Friday, March 3, 2017 at 9:05:05 PM UTC+5:30, SIMRAN SINGHAL 
> >       wrote: 
> >             This patch series replace "the the " with "the" in 
> >             various drivers. 
> > 
> >             v2: 
> >               -Adding cover-letter for the series. 
> > 
> >             simran singhal (3): 
> >               staging: wlan-ng: Replace "the the " with "the" 
> >               staging: rtl8192u: Replace "the the " with "the" 
> >               staging: unisys: Replace "the the " with "the" 
> > 
> >              drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c | 
> >             2 +- 
> >              drivers/staging/unisys/visorbus/visorbus_main.c   | 
> >             2 +- 
> >              drivers/staging/wlan-ng/prism2sta.c               | 
> >             2 +- 
> >              3 files changed, 3 insertions(+), 3 deletions(-) 
> > 
> >             -- 
> >             2.7.4 
> > 
> > -- 
> > You received this message because you are subscribed to the Google 
> Groups 
> > "outreachy-kernel" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> an 
> > email to outreachy-kern...@googlegroups.com <javascript:>. 
> > To post to this group, send email to outreach...@googlegroups.com 
> <javascript:>. 
> > To view this discussion on the web visithttps://
> groups.google.com/d/msgid/outreachy-kernel/1c412adb-4f88-47e2-aa29- 
> > 016e62fc882a%40googlegroups.com. 
> > For more options, visit https://groups.google.com/d/optout. 
> > 
> >


[-- Attachment #1.2: Type: text/html, Size: 3956 bytes --]

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

end of thread, other threads:[~2017-03-03 15:47 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-03 15:34 [PATCH v2 0/3] Replace "the the " with "the" simran singhal
2017-03-03 15:34 ` [PATCH v2 1/3] staging: wlan-ng: " simran singhal
2017-03-03 15:34 ` [PATCH v2 2/3] staging: rtl8192u: " simran singhal
2017-03-03 15:35 ` [PATCH v2 3/3] staging: unisys: " simran singhal
2017-03-03 15:36 ` [PATCH v2 0/3] " SIMRAN SINGHAL
2017-03-03 15:37   ` SIMRAN SINGHAL
2017-03-03 15:38     ` [Outreachy kernel] " Julia Lawall
2017-03-03 15:43       ` SIMRAN SINGHAL
2017-03-03 15:47       ` SIMRAN SINGHAL

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.