* [PATCH] i3c: master: svc: spelling corrections
@ 2026-02-16 6:17 Randy Dunlap
2026-02-16 8:33 ` Miquel Raynal
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Randy Dunlap @ 2026-02-16 6:17 UTC (permalink / raw)
To: linux-kernel
Cc: Randy Dunlap, Miquel Raynal, Frank Li, Alexandre Belloni,
linux-i3c, imx
Correct spelling for 3 words as identified by codespell:
svc-i3c-master.c:340: tigger ==> trigger
svc-i3c-master.c:532: reamins ==> remains
svc-i3c-master.c:734: filetered ==> filtered
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
Cc: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: Frank Li <Frank.Li@nxp.com>
Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>
Cc: linux-i3c@lists.infradead.org
Cc: imx@lists.linux.dev
---
drivers/i3c/master/svc-i3c-master.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- linux-next-20251210.orig/drivers/i3c/master/svc-i3c-master.c
+++ linux-next-20251210/drivers/i3c/master/svc-i3c-master.c
@@ -344,7 +344,7 @@ static void svc_i3c_master_reset_fifo_tr
{
u32 reg;
- /* Set RX and TX tigger levels, flush FIFOs */
+ /* Set RX and TX trigger levels, flush FIFOs */
reg = SVC_I3C_MDATACTRL_FLUSHTB |
SVC_I3C_MDATACTRL_FLUSHRB |
SVC_I3C_MDATACTRL_UNLOCK_TRIG |
@@ -572,7 +572,7 @@ static void svc_i3c_master_ibi_isr(struc
* 3. IBI isr writes an AutoIBI request.
* 4. The controller will not start AutoIBI process because SDA is not low.
* 5. IBIWON polling times out.
- * 6. Controller reamins in AutoIBI state and doesn't accept EmitStop request.
+ * 6. Controller remains in AutoIBI state and doesn't accept EmitStop request.
*/
writel(SVC_I3C_MCTRL_REQUEST_START_ADDR |
SVC_I3C_MCTRL_TYPE_I3C |
@@ -774,7 +774,7 @@ static int svc_i3c_master_bus_init(struc
/*
* Using I3C Open-Drain mode, target is 4.17MHz/240ns with a
- * duty-cycle tuned so that high levels are filetered out by
+ * duty-cycle tuned so that high levels are filtered out by
* the 50ns filter (target being 40ns).
*/
odhpp = 1;
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] i3c: master: svc: spelling corrections
2026-02-16 6:17 [PATCH] i3c: master: svc: spelling corrections Randy Dunlap
@ 2026-02-16 8:33 ` Miquel Raynal
2026-02-16 11:58 ` Daniel Baluta
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Miquel Raynal @ 2026-02-16 8:33 UTC (permalink / raw)
To: Randy Dunlap; +Cc: linux-kernel, Frank Li, Alexandre Belloni, linux-i3c, imx
On 15/02/2026 at 22:17:55 -08, Randy Dunlap <rdunlap@infradead.org> wrote:
> Correct spelling for 3 words as identified by codespell:
>
> svc-i3c-master.c:340: tigger ==> trigger
> svc-i3c-master.c:532: reamins ==> remains
> svc-i3c-master.c:734: filetered ==> filtered
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] i3c: master: svc: spelling corrections
2026-02-16 6:17 [PATCH] i3c: master: svc: spelling corrections Randy Dunlap
2026-02-16 8:33 ` Miquel Raynal
@ 2026-02-16 11:58 ` Daniel Baluta
2026-02-16 16:28 ` Frank Li
2026-03-11 22:06 ` Alexandre Belloni
3 siblings, 0 replies; 5+ messages in thread
From: Daniel Baluta @ 2026-02-16 11:58 UTC (permalink / raw)
To: Randy Dunlap, linux-kernel
Cc: Miquel Raynal, Frank Li, Alexandre Belloni, linux-i3c, imx
On 2/16/26 08:17, Randy Dunlap wrote:
> Correct spelling for 3 words as identified by codespell:
>
> svc-i3c-master.c:340: tigger ==> trigger
> svc-i3c-master.c:532: reamins ==> remains
> svc-i3c-master.c:734: filetered ==> filtered
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
'tigger levels' sounds better IMHO :D.
But anyhow,
Reviewed-by: Daniel Baluta <daniel.baluta@nxp.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] i3c: master: svc: spelling corrections
2026-02-16 6:17 [PATCH] i3c: master: svc: spelling corrections Randy Dunlap
2026-02-16 8:33 ` Miquel Raynal
2026-02-16 11:58 ` Daniel Baluta
@ 2026-02-16 16:28 ` Frank Li
2026-03-11 22:06 ` Alexandre Belloni
3 siblings, 0 replies; 5+ messages in thread
From: Frank Li @ 2026-02-16 16:28 UTC (permalink / raw)
To: Randy Dunlap
Cc: linux-kernel, Miquel Raynal, Alexandre Belloni, linux-i3c, imx
On Sun, Feb 15, 2026 at 10:17:55PM -0800, Randy Dunlap wrote:
> Correct spelling for 3 words as identified by codespell:
>
> svc-i3c-master.c:340: tigger ==> trigger
> svc-i3c-master.c:532: reamins ==> remains
> svc-i3c-master.c:734: filetered ==> filtered
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> ---
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> Cc: Miquel Raynal <miquel.raynal@bootlin.com>
> Cc: Frank Li <Frank.Li@nxp.com>
> Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>
> Cc: linux-i3c@lists.infradead.org
> Cc: imx@lists.linux.dev
> ---
> drivers/i3c/master/svc-i3c-master.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> --- linux-next-20251210.orig/drivers/i3c/master/svc-i3c-master.c
> +++ linux-next-20251210/drivers/i3c/master/svc-i3c-master.c
> @@ -344,7 +344,7 @@ static void svc_i3c_master_reset_fifo_tr
> {
> u32 reg;
>
> - /* Set RX and TX tigger levels, flush FIFOs */
> + /* Set RX and TX trigger levels, flush FIFOs */
> reg = SVC_I3C_MDATACTRL_FLUSHTB |
> SVC_I3C_MDATACTRL_FLUSHRB |
> SVC_I3C_MDATACTRL_UNLOCK_TRIG |
> @@ -572,7 +572,7 @@ static void svc_i3c_master_ibi_isr(struc
> * 3. IBI isr writes an AutoIBI request.
> * 4. The controller will not start AutoIBI process because SDA is not low.
> * 5. IBIWON polling times out.
> - * 6. Controller reamins in AutoIBI state and doesn't accept EmitStop request.
> + * 6. Controller remains in AutoIBI state and doesn't accept EmitStop request.
> */
> writel(SVC_I3C_MCTRL_REQUEST_START_ADDR |
> SVC_I3C_MCTRL_TYPE_I3C |
> @@ -774,7 +774,7 @@ static int svc_i3c_master_bus_init(struc
>
> /*
> * Using I3C Open-Drain mode, target is 4.17MHz/240ns with a
> - * duty-cycle tuned so that high levels are filetered out by
> + * duty-cycle tuned so that high levels are filtered out by
> * the 50ns filter (target being 40ns).
> */
> odhpp = 1;
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] i3c: master: svc: spelling corrections
2026-02-16 6:17 [PATCH] i3c: master: svc: spelling corrections Randy Dunlap
` (2 preceding siblings ...)
2026-02-16 16:28 ` Frank Li
@ 2026-03-11 22:06 ` Alexandre Belloni
3 siblings, 0 replies; 5+ messages in thread
From: Alexandre Belloni @ 2026-03-11 22:06 UTC (permalink / raw)
To: linux-kernel, Randy Dunlap; +Cc: Miquel Raynal, Frank Li, linux-i3c, imx
On Sun, 15 Feb 2026 22:17:55 -0800, Randy Dunlap wrote:
> Correct spelling for 3 words as identified by codespell:
>
> svc-i3c-master.c:340: tigger ==> trigger
> svc-i3c-master.c:532: reamins ==> remains
> svc-i3c-master.c:734: filetered ==> filtered
>
>
> [...]
Applied, thanks!
[1/1] i3c: master: svc: spelling corrections
https://git.kernel.org/i3c/c/5912baff068a
Best regards,
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-03-11 22:06 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-16 6:17 [PATCH] i3c: master: svc: spelling corrections Randy Dunlap
2026-02-16 8:33 ` Miquel Raynal
2026-02-16 11:58 ` Daniel Baluta
2026-02-16 16:28 ` Frank Li
2026-03-11 22:06 ` Alexandre Belloni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox