linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] Replace "is is " with "is"
@ 2017-03-04 16:07 simran singhal
  2017-03-04 16:07 ` [PATCH 1/3] staging: rtl8192u: Replace "is is" " simran singhal
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: simran singhal @ 2017-03-04 16:07 UTC (permalink / raw)
  To: abbotti
  Cc: hsweeten, gregkh, devel, linux-kernel, johan, dtwlin,
	outreachy-kernel, greybus-dev

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

simran singhal (3):
  staging: rtl8192u: Replace "is is" with "is"
  staging: greybus: Replace "is is" with "is"
  staging: comedi: Replace "is is" with "is"

 drivers/staging/comedi/drivers/ni_usb6501.c | 2 +-
 drivers/staging/greybus/uart.c              | 2 +-
 drivers/staging/rtl8192u/r819xU_cmdpkt.c    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.7.4

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

* [PATCH 1/3] staging: rtl8192u: Replace "is is" with "is"
  2017-03-04 16:07 [PATCH 0/3] Replace "is is " with "is" simran singhal
@ 2017-03-04 16:07 ` simran singhal
  2017-03-04 16:18   ` [Outreachy kernel] " Julia Lawall
  2017-03-04 16:07 ` [PATCH 2/3] staging: greybus: " simran singhal
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 10+ messages in thread
From: simran singhal @ 2017-03-04 16:07 UTC (permalink / raw)
  To: abbotti
  Cc: hsweeten, gregkh, devel, linux-kernel, johan, dtwlin,
	outreachy-kernel, greybus-dev

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

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

diff --git a/drivers/staging/rtl8192u/r819xU_cmdpkt.c b/drivers/staging/rtl8192u/r819xU_cmdpkt.c
index 3e0731b..231be8f 100644
--- a/drivers/staging/rtl8192u/r819xU_cmdpkt.c
+++ b/drivers/staging/rtl8192u/r819xU_cmdpkt.c
@@ -495,7 +495,7 @@ u32 cmpk_message_handle_rx(struct net_device *dev,
 	u8			element_id;
 	u8			*pcmd_buff;
 
-	/* 0. Check inpt arguments. If is is a command queue message or
+	/* 0. Check inpt arguments. If is a command queue message or
 	 * pointer is null.
 	 */
 	if (pstats == NULL)
-- 
2.7.4

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

* [PATCH 2/3] staging: greybus: Replace "is is" with "is"
  2017-03-04 16:07 [PATCH 0/3] Replace "is is " with "is" simran singhal
  2017-03-04 16:07 ` [PATCH 1/3] staging: rtl8192u: Replace "is is" " simran singhal
@ 2017-03-04 16:07 ` simran singhal
  2017-03-04 16:19   ` [Outreachy kernel] " Julia Lawall
  2017-03-06  4:12   ` [greybus-dev] " Viresh Kumar
  2017-03-04 16:07 ` [PATCH 3/3] staging: comedi: " simran singhal
  2017-03-04 16:15 ` [Outreachy kernel] [PATCH 0/3] Replace "is is " " Julia Lawall
  3 siblings, 2 replies; 10+ messages in thread
From: simran singhal @ 2017-03-04 16:07 UTC (permalink / raw)
  To: abbotti
  Cc: hsweeten, gregkh, devel, linux-kernel, johan, dtwlin,
	outreachy-kernel, greybus-dev

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

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

diff --git a/drivers/staging/greybus/uart.c b/drivers/staging/greybus/uart.c
index ab0dbf5..9188fe0 100644
--- a/drivers/staging/greybus/uart.c
+++ b/drivers/staging/greybus/uart.c
@@ -34,7 +34,7 @@
 #include "greybus.h"
 #include "gbphy.h"
 
-#define GB_NUM_MINORS	16	/* 16 is is more than enough */
+#define GB_NUM_MINORS	16	/* 16 is more than enough */
 #define GB_NAME		"ttyGB"
 
 #define GB_UART_WRITE_FIFO_SIZE		PAGE_SIZE
-- 
2.7.4

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

* [PATCH 3/3] staging: comedi: Replace "is is" with "is"
  2017-03-04 16:07 [PATCH 0/3] Replace "is is " with "is" simran singhal
  2017-03-04 16:07 ` [PATCH 1/3] staging: rtl8192u: Replace "is is" " simran singhal
  2017-03-04 16:07 ` [PATCH 2/3] staging: greybus: " simran singhal
@ 2017-03-04 16:07 ` simran singhal
  2017-03-04 16:19   ` [Outreachy kernel] " Julia Lawall
  2017-03-04 16:15 ` [Outreachy kernel] [PATCH 0/3] Replace "is is " " Julia Lawall
  3 siblings, 1 reply; 10+ messages in thread
From: simran singhal @ 2017-03-04 16:07 UTC (permalink / raw)
  To: abbotti
  Cc: hsweeten, gregkh, devel, linux-kernel, johan, dtwlin,
	outreachy-kernel, greybus-dev

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

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

diff --git a/drivers/staging/comedi/drivers/ni_usb6501.c b/drivers/staging/comedi/drivers/ni_usb6501.c
index 5036eeb..9a0a963 100644
--- a/drivers/staging/comedi/drivers/ni_usb6501.c
+++ b/drivers/staging/comedi/drivers/ni_usb6501.c
@@ -45,7 +45,7 @@
  *	byte 3 is the total packet length
  *
  *	byte 4 is always 00
- *	byte 5 is is the total packet length - 4
+ *	byte 5 is the total packet length - 4
  *	byte 6 is always 01
  *	byte 7 is the command
  *
-- 
2.7.4

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

* Re: [Outreachy kernel] [PATCH 0/3] Replace "is is " with "is"
  2017-03-04 16:07 [PATCH 0/3] Replace "is is " with "is" simran singhal
                   ` (2 preceding siblings ...)
  2017-03-04 16:07 ` [PATCH 3/3] staging: comedi: " simran singhal
@ 2017-03-04 16:15 ` Julia Lawall
  3 siblings, 0 replies; 10+ messages in thread
From: Julia Lawall @ 2017-03-04 16:15 UTC (permalink / raw)
  To: simran singhal
  Cc: abbotti, hsweeten, gregkh, devel, linux-kernel, johan, dtwlin,
	outreachy-kernel, greybus-dev

Joe suggested to indicate the subsystem in the subject line of the cover
letter, ie staging here.

How are you finding these?

julia

On Sat, 4 Mar 2017, simran singhal wrote:

> This patch series replace "is is " with "is" in various drivers.
>
> simran singhal (3):
>   staging: rtl8192u: Replace "is is" with "is"
>   staging: greybus: Replace "is is" with "is"
>   staging: comedi: Replace "is is" with "is"
>
>  drivers/staging/comedi/drivers/ni_usb6501.c | 2 +-
>  drivers/staging/greybus/uart.c              | 2 +-
>  drivers/staging/rtl8192u/r819xU_cmdpkt.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 visit https://groups.google.com/d/msgid/outreachy-kernel/1488643671-24758-1-git-send-email-singhalsimran0%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

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

* Re: [Outreachy kernel] [PATCH 1/3] staging: rtl8192u: Replace "is is" with "is"
  2017-03-04 16:07 ` [PATCH 1/3] staging: rtl8192u: Replace "is is" " simran singhal
@ 2017-03-04 16:18   ` Julia Lawall
  2017-03-08 10:21     ` Ian Abbott
  0 siblings, 1 reply; 10+ messages in thread
From: Julia Lawall @ 2017-03-04 16:18 UTC (permalink / raw)
  To: simran singhal
  Cc: abbotti, hsweeten, gregkh, devel, linux-kernel, johan, dtwlin,
	outreachy-kernel, greybus-dev



On Sat, 4 Mar 2017, simran singhal wrote:

> This patch replace "is is " with "is". The replacement couldn't be
> automated because sometimes the first "is" was meant to be another
> word.
>
> Signed-off-by: simran singhal <singhalsimran0@gmail.com>
> ---
>  drivers/staging/rtl8192u/r819xU_cmdpkt.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/rtl8192u/r819xU_cmdpkt.c b/drivers/staging/rtl8192u/r819xU_cmdpkt.c
> index 3e0731b..231be8f 100644
> --- a/drivers/staging/rtl8192u/r819xU_cmdpkt.c
> +++ b/drivers/staging/rtl8192u/r819xU_cmdpkt.c
> @@ -495,7 +495,7 @@ u32 cmpk_message_handle_rx(struct net_device *dev,
>  	u8			element_id;
>  	u8			*pcmd_buff;
>
> -	/* 0. Check inpt arguments. If is is a command queue message or
> +	/* 0. Check inpt arguments. If is a command queue message or

I can't figure out how to parse "If is a command...".

julia

>  	 * pointer is null.
>  	 */
>  	if (pstats == NULL)
> --
> 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 visit https://groups.google.com/d/msgid/outreachy-kernel/1488643671-24758-2-git-send-email-singhalsimran0%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

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

* Re: [Outreachy kernel] [PATCH 2/3] staging: greybus: Replace "is is" with "is"
  2017-03-04 16:07 ` [PATCH 2/3] staging: greybus: " simran singhal
@ 2017-03-04 16:19   ` Julia Lawall
  2017-03-06  4:12   ` [greybus-dev] " Viresh Kumar
  1 sibling, 0 replies; 10+ messages in thread
From: Julia Lawall @ 2017-03-04 16:19 UTC (permalink / raw)
  To: simran singhal
  Cc: abbotti, hsweeten, gregkh, devel, linux-kernel, johan, dtwlin,
	outreachy-kernel, greybus-dev



On Sat, 4 Mar 2017, simran singhal wrote:

> This patch replace "is is " with "is". The replacement couldn't be
> automated because sometimes the first "is" was meant to be another
> word.
>
> Signed-off-by: simran singhal <singhalsimran0@gmail.com>

Acked-by: Julia Lawall <julia.lawall@lip6.fr>

> ---
>  drivers/staging/greybus/uart.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/greybus/uart.c b/drivers/staging/greybus/uart.c
> index ab0dbf5..9188fe0 100644
> --- a/drivers/staging/greybus/uart.c
> +++ b/drivers/staging/greybus/uart.c
> @@ -34,7 +34,7 @@
>  #include "greybus.h"
>  #include "gbphy.h"
>
> -#define GB_NUM_MINORS	16	/* 16 is is more than enough */
> +#define GB_NUM_MINORS	16	/* 16 is more than enough */
>  #define GB_NAME		"ttyGB"
>
>  #define GB_UART_WRITE_FIFO_SIZE		PAGE_SIZE
> --
> 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 visit https://groups.google.com/d/msgid/outreachy-kernel/1488643671-24758-3-git-send-email-singhalsimran0%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

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

* Re: [Outreachy kernel] [PATCH 3/3] staging: comedi: Replace "is is" with "is"
  2017-03-04 16:07 ` [PATCH 3/3] staging: comedi: " simran singhal
@ 2017-03-04 16:19   ` Julia Lawall
  0 siblings, 0 replies; 10+ messages in thread
From: Julia Lawall @ 2017-03-04 16:19 UTC (permalink / raw)
  To: simran singhal
  Cc: abbotti, hsweeten, gregkh, devel, linux-kernel, johan, dtwlin,
	outreachy-kernel, greybus-dev



On Sat, 4 Mar 2017, simran singhal wrote:

> This patch replace "is is " with "is". The replacement couldn't be
> automated because sometimes the first "is" was meant to be another
> word.
>
> Signed-off-by: simran singhal <singhalsimran0@gmail.com>

Acked-by: Julia Lawall <julia.lawall@lip6.fr>

> ---
>  drivers/staging/comedi/drivers/ni_usb6501.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/comedi/drivers/ni_usb6501.c b/drivers/staging/comedi/drivers/ni_usb6501.c
> index 5036eeb..9a0a963 100644
> --- a/drivers/staging/comedi/drivers/ni_usb6501.c
> +++ b/drivers/staging/comedi/drivers/ni_usb6501.c
> @@ -45,7 +45,7 @@
>   *	byte 3 is the total packet length
>   *
>   *	byte 4 is always 00
> - *	byte 5 is is the total packet length - 4
> + *	byte 5 is the total packet length - 4
>   *	byte 6 is always 01
>   *	byte 7 is the command
>   *
> --
> 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 visit https://groups.google.com/d/msgid/outreachy-kernel/1488643671-24758-4-git-send-email-singhalsimran0%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>

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

* Re: [greybus-dev] [PATCH 2/3] staging: greybus: Replace "is is" with "is"
  2017-03-04 16:07 ` [PATCH 2/3] staging: greybus: " simran singhal
  2017-03-04 16:19   ` [Outreachy kernel] " Julia Lawall
@ 2017-03-06  4:12   ` Viresh Kumar
  1 sibling, 0 replies; 10+ messages in thread
From: Viresh Kumar @ 2017-03-06  4:12 UTC (permalink / raw)
  To: simran singhal
  Cc: abbotti, devel, outreachy-kernel, linux-kernel, johan, dtwlin,
	hsweeten, greybus-dev

On 04-03-17, 21:37, simran singhal wrote:
> This patch replace "is is " with "is". The replacement couldn't be
> automated because sometimes the first "is" was meant to be another
> word.
> 
> Signed-off-by: simran singhal <singhalsimran0@gmail.com>
> ---
>  drivers/staging/greybus/uart.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

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

* Re: [Outreachy kernel] [PATCH 1/3] staging: rtl8192u: Replace "is is" with "is"
  2017-03-04 16:18   ` [Outreachy kernel] " Julia Lawall
@ 2017-03-08 10:21     ` Ian Abbott
  0 siblings, 0 replies; 10+ messages in thread
From: Ian Abbott @ 2017-03-08 10:21 UTC (permalink / raw)
  To: Julia Lawall, simran singhal
  Cc: hsweeten, gregkh, devel, linux-kernel, johan, dtwlin,
	outreachy-kernel, greybus-dev

On 04/03/17 16:18, Julia Lawall wrote:
>
>
> On Sat, 4 Mar 2017, simran singhal wrote:
>
>> This patch replace "is is " with "is". The replacement couldn't be
>> automated because sometimes the first "is" was meant to be another
>> word.
>>
>> Signed-off-by: simran singhal <singhalsimran0@gmail.com>
>> ---
>>  drivers/staging/rtl8192u/r819xU_cmdpkt.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/staging/rtl8192u/r819xU_cmdpkt.c b/drivers/staging/rtl8192u/r819xU_cmdpkt.c
>> index 3e0731b..231be8f 100644
>> --- a/drivers/staging/rtl8192u/r819xU_cmdpkt.c
>> +++ b/drivers/staging/rtl8192u/r819xU_cmdpkt.c
>> @@ -495,7 +495,7 @@ u32 cmpk_message_handle_rx(struct net_device *dev,
>>  	u8			element_id;
>>  	u8			*pcmd_buff;
>>
>> -	/* 0. Check inpt arguments. If is is a command queue message or
>> +	/* 0. Check inpt arguments. If is a command queue message or
>
> I can't figure out how to parse "If is a command...".

I think it should be "If it is a command...".

-- 
-=( Ian Abbott @ MEV Ltd.    E-mail: <abbotti@mev.co.uk> )=-
-=(                          Web: http://www.mev.co.uk/  )=-

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

end of thread, other threads:[~2017-03-08 10:21 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-04 16:07 [PATCH 0/3] Replace "is is " with "is" simran singhal
2017-03-04 16:07 ` [PATCH 1/3] staging: rtl8192u: Replace "is is" " simran singhal
2017-03-04 16:18   ` [Outreachy kernel] " Julia Lawall
2017-03-08 10:21     ` Ian Abbott
2017-03-04 16:07 ` [PATCH 2/3] staging: greybus: " simran singhal
2017-03-04 16:19   ` [Outreachy kernel] " Julia Lawall
2017-03-06  4:12   ` [greybus-dev] " Viresh Kumar
2017-03-04 16:07 ` [PATCH 3/3] staging: comedi: " simran singhal
2017-03-04 16:19   ` [Outreachy kernel] " Julia Lawall
2017-03-04 16:15 ` [Outreachy kernel] [PATCH 0/3] Replace "is is " " Julia Lawall

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).