linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] gpio: fix several typos
@ 2020-04-24 15:41 Dejin Zheng
  2020-04-24 15:41 ` [PATCH v2 1/2] gpio: ftgpio010: Fix small typo Dejin Zheng
  2020-04-24 15:41 ` [PATCH v2 2/2] gpio: mm-lantiq: " Dejin Zheng
  0 siblings, 2 replies; 7+ messages in thread
From: Dejin Zheng @ 2020-04-24 15:41 UTC (permalink / raw)
  To: linus.walleij, bgolaszewski, linux-gpio; +Cc: linux-kernel, Dejin Zheng

Use codespell to fix two typos in ftgpio010 and mm-lantiq drivers.
s/desireable/desirable/ for ftgpio010 driver.
s/dont/don't/ for mm-lantiq driver.

v1 -> v2:
	- split patch v1 (only one patch) into patches for each driver
	  by Bartosz's suggestion. thanks Bartosz.

Dejin Zheng (2):
  gpio: ftgpio010: Fix small typo
  gpio: mm-lantiq: Fix small typo

 drivers/gpio/gpio-ftgpio010.c | 2 +-
 drivers/gpio/gpio-mm-lantiq.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.25.0


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

* [PATCH v2 1/2] gpio: ftgpio010: Fix small typo
  2020-04-24 15:41 [PATCH v2 0/2] gpio: fix several typos Dejin Zheng
@ 2020-04-24 15:41 ` Dejin Zheng
  2020-04-28 13:50   ` Linus Walleij
  2020-04-24 15:41 ` [PATCH v2 2/2] gpio: mm-lantiq: " Dejin Zheng
  1 sibling, 1 reply; 7+ messages in thread
From: Dejin Zheng @ 2020-04-24 15:41 UTC (permalink / raw)
  To: linus.walleij, bgolaszewski, linux-gpio
  Cc: linux-kernel, Dejin Zheng, Andy Shevchenko

Fix a spelling typo in gpio-ftgpio010.c by codespell
s/desireable/desirable/

Cc: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com>
---
v1 -> v2:
	- split patch v1 (only one patch) into patches for each driver
	  by Bartosz's suggestion. thanks Bartosz.

 drivers/gpio/gpio-ftgpio010.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-ftgpio010.c b/drivers/gpio/gpio-ftgpio010.c
index fbddb1662428..4031164780f7 100644
--- a/drivers/gpio/gpio-ftgpio010.c
+++ b/drivers/gpio/gpio-ftgpio010.c
@@ -193,7 +193,7 @@ static int ftgpio_gpio_set_config(struct gpio_chip *gc, unsigned int offset,
 	if (val == deb_div) {
 		/*
 		 * The debounce timer happens to already be set to the
-		 * desireable value, what a coincidence! We can just enable
+		 * desirable value, what a coincidence! We can just enable
 		 * debounce on this GPIO line and return. This happens more
 		 * often than you think, for example when all GPIO keys
 		 * on a system are requesting the same debounce interval.
-- 
2.25.0


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

* [PATCH v2 2/2] gpio: mm-lantiq: Fix small typo
  2020-04-24 15:41 [PATCH v2 0/2] gpio: fix several typos Dejin Zheng
  2020-04-24 15:41 ` [PATCH v2 1/2] gpio: ftgpio010: Fix small typo Dejin Zheng
@ 2020-04-24 15:41 ` Dejin Zheng
  2020-04-28 13:53   ` Linus Walleij
  2020-04-28 20:41   ` Linus Walleij
  1 sibling, 2 replies; 7+ messages in thread
From: Dejin Zheng @ 2020-04-24 15:41 UTC (permalink / raw)
  To: linus.walleij, bgolaszewski, linux-gpio
  Cc: linux-kernel, Dejin Zheng, Andy Shevchenko

Fix a spelling typo in gpio-mm-lantiq.c by codespell
s/dont/don't/

Cc: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com>
---
v1 -> v2:
	- split patch v1 (only one patch) into patches for each driver
	  by Bartosz's suggestion. thanks Bartosz.

 drivers/gpio/gpio-mm-lantiq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-mm-lantiq.c b/drivers/gpio/gpio-mm-lantiq.c
index f460d71b0c92..538e31fe8903 100644
--- a/drivers/gpio/gpio-mm-lantiq.c
+++ b/drivers/gpio/gpio-mm-lantiq.c
@@ -36,7 +36,7 @@ struct ltq_mm {
  * @chip:     Pointer to our private data structure.
  *
  * Write the shadow value to the EBU to set the gpios. We need to set the
- * global EBU lock to make sure that PCI/MTD dont break.
+ * global EBU lock to make sure that PCI/MTD don't break.
  */
 static void ltq_mm_apply(struct ltq_mm *chip)
 {
-- 
2.25.0


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

* Re: [PATCH v2 1/2] gpio: ftgpio010: Fix small typo
  2020-04-24 15:41 ` [PATCH v2 1/2] gpio: ftgpio010: Fix small typo Dejin Zheng
@ 2020-04-28 13:50   ` Linus Walleij
  0 siblings, 0 replies; 7+ messages in thread
From: Linus Walleij @ 2020-04-28 13:50 UTC (permalink / raw)
  To: Dejin Zheng
  Cc: Bartosz Golaszewski, open list:GPIO SUBSYSTEM, linux-kernel,
	Andy Shevchenko

On Fri, Apr 24, 2020 at 5:41 PM Dejin Zheng <zhengdejin5@gmail.com> wrote:

> Fix a spelling typo in gpio-ftgpio010.c by codespell
> s/desireable/desirable/
>
> Cc: Andy Shevchenko <andy.shevchenko@gmail.com>
> Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com>
> ---
> v1 -> v2:
>         - split patch v1 (only one patch) into patches for each driver
>           by Bartosz's suggestion. thanks Bartosz.

Patch applied.

Yours,
Linus Walleij

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

* Re: [PATCH v2 2/2] gpio: mm-lantiq: Fix small typo
  2020-04-24 15:41 ` [PATCH v2 2/2] gpio: mm-lantiq: " Dejin Zheng
@ 2020-04-28 13:53   ` Linus Walleij
  2020-04-28 15:30     ` Andy Shevchenko
  2020-04-28 20:41   ` Linus Walleij
  1 sibling, 1 reply; 7+ messages in thread
From: Linus Walleij @ 2020-04-28 13:53 UTC (permalink / raw)
  To: Dejin Zheng
  Cc: Bartosz Golaszewski, open list:GPIO SUBSYSTEM, linux-kernel,
	Andy Shevchenko

On Fri, Apr 24, 2020 at 5:41 PM Dejin Zheng <zhengdejin5@gmail.com> wrote:

> Fix a spelling typo in gpio-mm-lantiq.c by codespell
> s/dont/don't/
>
> Cc: Andy Shevchenko <andy.shevchenko@gmail.com>
> Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com>
> ---
> v1 -> v2:
>         - split patch v1 (only one patch) into patches for each driver
>           by Bartosz's suggestion. thanks Bartosz.

Acked-by: Linus Walleij <linus.walleij@linaro.org>

Andy: since this is an Intel product are you picking it up?
I think this Intel-MIPS platform is a bit of a special case so
I can also handle it if you prefer.

Yours,
Linus Walleij

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

* Re: [PATCH v2 2/2] gpio: mm-lantiq: Fix small typo
  2020-04-28 13:53   ` Linus Walleij
@ 2020-04-28 15:30     ` Andy Shevchenko
  0 siblings, 0 replies; 7+ messages in thread
From: Andy Shevchenko @ 2020-04-28 15:30 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Dejin Zheng, Bartosz Golaszewski, open list:GPIO SUBSYSTEM, linux-kernel

On Tue, Apr 28, 2020 at 4:53 PM Linus Walleij <linus.walleij@linaro.org> wrote:
>
> On Fri, Apr 24, 2020 at 5:41 PM Dejin Zheng <zhengdejin5@gmail.com> wrote:
>
> > Fix a spelling typo in gpio-mm-lantiq.c by codespell
> > s/dont/don't/
> >
> > Cc: Andy Shevchenko <andy.shevchenko@gmail.com>
> > Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com>
> > ---
> > v1 -> v2:
> >         - split patch v1 (only one patch) into patches for each driver
> >           by Bartosz's suggestion. thanks Bartosz.
>
> Acked-by: Linus Walleij <linus.walleij@linaro.org>
>
> Andy: since this is an Intel product are you picking it up?
> I think this Intel-MIPS platform is a bit of a special case so
> I can also handle it if you prefer.

I only collecting stuff for x86 base Intel, this one is MIPS, so,
please take it directly if you are okay with it.

-- 
With Best Regards,
Andy Shevchenko

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

* Re: [PATCH v2 2/2] gpio: mm-lantiq: Fix small typo
  2020-04-24 15:41 ` [PATCH v2 2/2] gpio: mm-lantiq: " Dejin Zheng
  2020-04-28 13:53   ` Linus Walleij
@ 2020-04-28 20:41   ` Linus Walleij
  1 sibling, 0 replies; 7+ messages in thread
From: Linus Walleij @ 2020-04-28 20:41 UTC (permalink / raw)
  To: Dejin Zheng
  Cc: Bartosz Golaszewski, open list:GPIO SUBSYSTEM, linux-kernel,
	Andy Shevchenko

On Fri, Apr 24, 2020 at 5:41 PM Dejin Zheng <zhengdejin5@gmail.com> wrote:

> Fix a spelling typo in gpio-mm-lantiq.c by codespell
> s/dont/don't/
>
> Cc: Andy Shevchenko <andy.shevchenko@gmail.com>
> Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com>
> ---
> v1 -> v2:
>         - split patch v1 (only one patch) into patches for each driver
>           by Bartosz's suggestion. thanks Bartosz.

Patch applied.

Yours,
Linus Walleij

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

end of thread, other threads:[~2020-04-28 20:42 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-24 15:41 [PATCH v2 0/2] gpio: fix several typos Dejin Zheng
2020-04-24 15:41 ` [PATCH v2 1/2] gpio: ftgpio010: Fix small typo Dejin Zheng
2020-04-28 13:50   ` Linus Walleij
2020-04-24 15:41 ` [PATCH v2 2/2] gpio: mm-lantiq: " Dejin Zheng
2020-04-28 13:53   ` Linus Walleij
2020-04-28 15:30     ` Andy Shevchenko
2020-04-28 20:41   ` Linus Walleij

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