linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/3] staging: Replace "is is " with "is"
@ 2017-03-04 17:40 simran singhal
  2017-03-04 17:40 ` [PATCH v1 1/3] staging: rtl8192u: Replace "is is" " simran singhal
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: simran singhal @ 2017-03-04 17:40 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.

v1:
  -change the subject
  -Changed "If is a command..." to "It is a command..." in
   rtl8192u/r819xU_cmdpkt.c

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] 5+ messages in thread

* [PATCH v1 1/3] staging: rtl8192u: Replace "is is" with "is"
  2017-03-04 17:40 [PATCH v1 0/3] staging: Replace "is is " with "is" simran singhal
@ 2017-03-04 17:40 ` simran singhal
  2017-03-04 17:41 ` [PATCH v1 2/3] staging: greybus: " simran singhal
  2017-03-04 17:41 ` [PATCH v1 3/3] staging: comedi: " simran singhal
  2 siblings, 0 replies; 5+ messages in thread
From: simran singhal @ 2017-03-04 17:40 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>
---

 v1:
   -Changed "If is a command..." to "It is a command..."

 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..bb6d8bd 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. It is a command queue message or
 	 * pointer is null.
 	 */
 	if (pstats == NULL)
-- 
2.7.4

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

* [PATCH v1 2/3] staging: greybus: Replace "is is" with "is"
  2017-03-04 17:40 [PATCH v1 0/3] staging: Replace "is is " with "is" simran singhal
  2017-03-04 17:40 ` [PATCH v1 1/3] staging: rtl8192u: Replace "is is" " simran singhal
@ 2017-03-04 17:41 ` simran singhal
  2017-03-04 17:41 ` [PATCH v1 3/3] staging: comedi: " simran singhal
  2 siblings, 0 replies; 5+ messages in thread
From: simran singhal @ 2017-03-04 17:41 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>
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

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

* [PATCH v1 3/3] staging: comedi: Replace "is is" with "is"
  2017-03-04 17:40 [PATCH v1 0/3] staging: Replace "is is " with "is" simran singhal
  2017-03-04 17:40 ` [PATCH v1 1/3] staging: rtl8192u: Replace "is is" " simran singhal
  2017-03-04 17:41 ` [PATCH v1 2/3] staging: greybus: " simran singhal
@ 2017-03-04 17:41 ` simran singhal
  2017-03-08 10:23   ` Ian Abbott
  2 siblings, 1 reply; 5+ messages in thread
From: simran singhal @ 2017-03-04 17:41 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>
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

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

* Re: [PATCH v1 3/3] staging: comedi: Replace "is is" with "is"
  2017-03-04 17:41 ` [PATCH v1 3/3] staging: comedi: " simran singhal
@ 2017-03-08 10:23   ` Ian Abbott
  0 siblings, 0 replies; 5+ messages in thread
From: Ian Abbott @ 2017-03-08 10:23 UTC (permalink / raw)
  To: simran singhal
  Cc: hsweeten, gregkh, devel, linux-kernel, johan, dtwlin,
	outreachy-kernel, greybus-dev

On 04/03/17 17:41, 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
>   *
>

Looks good.

Reviewed-by: Ian Abbott <abbotti@mev.co.uk>

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

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

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

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-04 17:40 [PATCH v1 0/3] staging: Replace "is is " with "is" simran singhal
2017-03-04 17:40 ` [PATCH v1 1/3] staging: rtl8192u: Replace "is is" " simran singhal
2017-03-04 17:41 ` [PATCH v1 2/3] staging: greybus: " simran singhal
2017-03-04 17:41 ` [PATCH v1 3/3] staging: comedi: " simran singhal
2017-03-08 10:23   ` Ian Abbott

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