linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: renesas: Couple of spelling fixes
@ 2021-03-21  7:58 Bhaskar Chowdhury
  2021-03-21 16:05 ` Randy Dunlap
  2021-03-24  9:42 ` Geert Uytterhoeven
  0 siblings, 2 replies; 3+ messages in thread
From: Bhaskar Chowdhury @ 2021-03-21  7:58 UTC (permalink / raw)
  To: renesas, mturquette, sboyd, linux-renesas-soc, linux-clk, linux-kernel
  Cc: rdunlap, Bhaskar Chowdhury


s/suposed/supposed/
s/concurent/concurrent/

Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>
---
 drivers/clk/renesas/r9a06g032-clocks.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/clk/renesas/r9a06g032-clocks.c b/drivers/clk/renesas/r9a06g032-clocks.c
index 892e91b92f2c..1fe166e7f8bd 100644
--- a/drivers/clk/renesas/r9a06g032-clocks.c
+++ b/drivers/clk/renesas/r9a06g032-clocks.c
@@ -279,7 +279,7 @@ static const struct r9a06g032_clkdesc r9a06g032_clocks[] = {
 	/*
 	 * These are not hardware clocks, but are needed to handle the special
 	 * case where we have a 'selector bit' that doesn't just change the
-	 * parent for a clock, but also the gate it's suposed to use.
+	 * parent for a clock, but also the gate it's supposed to use.
 	 */
 	{
 		.index = R9A06G032_UART_GROUP_012,
@@ -311,7 +311,7 @@ static const struct r9a06g032_clkdesc r9a06g032_clocks[] = {

 struct r9a06g032_priv {
 	struct clk_onecell_data data;
-	spinlock_t lock; /* protects concurent access to gates */
+	spinlock_t lock; /* protects concurrent access to gates */
 	void __iomem *reg;
 };

--
2.30.1


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

* Re: [PATCH] clk: renesas: Couple of spelling fixes
  2021-03-21  7:58 [PATCH] clk: renesas: Couple of spelling fixes Bhaskar Chowdhury
@ 2021-03-21 16:05 ` Randy Dunlap
  2021-03-24  9:42 ` Geert Uytterhoeven
  1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2021-03-21 16:05 UTC (permalink / raw)
  To: Bhaskar Chowdhury
  Cc: renesas, mturquette, sboyd, linux-renesas-soc, linux-clk, linux-kernel



On Sun, 21 Mar 2021, Bhaskar Chowdhury wrote:

>
> s/suposed/supposed/
> s/concurent/concurrent/
>
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>


> ---
> drivers/clk/renesas/r9a06g032-clocks.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/clk/renesas/r9a06g032-clocks.c b/drivers/clk/renesas/r9a06g032-clocks.c
> index 892e91b92f2c..1fe166e7f8bd 100644
> --- a/drivers/clk/renesas/r9a06g032-clocks.c
> +++ b/drivers/clk/renesas/r9a06g032-clocks.c
> @@ -279,7 +279,7 @@ static const struct r9a06g032_clkdesc r9a06g032_clocks[] = {
> 	/*
> 	 * These are not hardware clocks, but are needed to handle the special
> 	 * case where we have a 'selector bit' that doesn't just change the
> -	 * parent for a clock, but also the gate it's suposed to use.
> +	 * parent for a clock, but also the gate it's supposed to use.
> 	 */
> 	{
> 		.index = R9A06G032_UART_GROUP_012,
> @@ -311,7 +311,7 @@ static const struct r9a06g032_clkdesc r9a06g032_clocks[] = {
>
> struct r9a06g032_priv {
> 	struct clk_onecell_data data;
> -	spinlock_t lock; /* protects concurent access to gates */
> +	spinlock_t lock; /* protects concurrent access to gates */
> 	void __iomem *reg;
> };
>
> --
> 2.30.1
>
>

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

* Re: [PATCH] clk: renesas: Couple of spelling fixes
  2021-03-21  7:58 [PATCH] clk: renesas: Couple of spelling fixes Bhaskar Chowdhury
  2021-03-21 16:05 ` Randy Dunlap
@ 2021-03-24  9:42 ` Geert Uytterhoeven
  1 sibling, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2021-03-24  9:42 UTC (permalink / raw)
  To: Bhaskar Chowdhury
  Cc: renesas, Michael Turquette, Stephen Boyd, Linux-Renesas,
	linux-clk, Linux Kernel Mailing List, Randy Dunlap

On Sun, Mar 21, 2021 at 9:03 AM Bhaskar Chowdhury <unixbhaskar@gmail.com> wrote:
> s/suposed/supposed/
> s/concurent/concurrent/
>
> Signed-off-by: Bhaskar Chowdhury <unixbhaskar@gmail.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
i.e. will queue in renesas-clk-for-v5.13.

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

end of thread, other threads:[~2021-03-24  9:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-21  7:58 [PATCH] clk: renesas: Couple of spelling fixes Bhaskar Chowdhury
2021-03-21 16:05 ` Randy Dunlap
2021-03-24  9:42 ` Geert Uytterhoeven

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