* [PATCH 0/2] mdio-mux: fix typos in comments
@ 2026-09-04 10:41 Hemanth Selam
2026-09-04 10:41 ` [PATCH 1/2] mdio-mux: fix typo "framwork" in comment Hemanth Selam
2026-09-04 10:41 ` [PATCH 2/2] mii: fix typo "asymetric" " Hemanth Selam
0 siblings, 2 replies; 5+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:41 UTC (permalink / raw)
Cc: linux-kernel
This corrects 2 misspellings in comments. Each is a separate patch so
that any one of them can be dropped without touching the rest.
Nothing outside comments changes. Every touched C file was checked by
dropping its comments, replacing each string literal with a placeholder
and collapsing whitespace; what remained was identical before and after,
so the compiled code cannot differ.
The mistakes were found with scripts/checkpatch.pl against the list in
scripts/spelling.txt. The scanning, the edits and the changelogs were
produced with Cursor running the claude-opus-5 model, from a request to
find and fix spelling mistakes across the tree, and every correction was
then re-checked by the comparison described above. Words that name an
identifier were left alone deliberately, even when they read as typos,
because correcting the prose would make the comment disagree with the
code it describes.
Tested by building x86_64 defconfig at v7.3-rc1-269-gbc35965f6940, which
is clean. Nothing else was built, so any patch touching code that
x86_64 defconfig does not compile has been read but not compiled.
Hemanth Selam (2):
mdio-mux: fix typo "framwork" in comment
mii: fix typo "asymetric" in comment
include/linux/mdio-mux.h | 2 +-
include/uapi/linux/mii.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] mdio-mux: fix typo "framwork" in comment
2026-09-04 10:41 [PATCH 0/2] mdio-mux: fix typos in comments Hemanth Selam
@ 2026-09-04 10:41 ` Hemanth Selam
2026-09-04 13:16 ` Andrew Lunn
2026-09-04 10:41 ` [PATCH 2/2] mii: fix typo "asymetric" " Hemanth Selam
1 sibling, 1 reply; 5+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:41 UTC (permalink / raw)
To: Andrew Lunn, Heiner Kallweit, Russell King; +Cc: linux-kernel, netdev
Correct "framwork" to "framework", reported by scripts/checkpatch.pl using
the misspelling list in scripts/spelling.txt. Only touches comments, no
code changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
include/linux/mdio-mux.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/mdio-mux.h b/include/linux/mdio-mux.h
index a5d58f221939..e2af9cb8e017 100644
--- a/include/linux/mdio-mux.h
+++ b/include/linux/mdio-mux.h
@@ -1,5 +1,5 @@
/*
- * MDIO bus multiplexer framwork.
+ * MDIO bus multiplexer framework.
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
--
2.48.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/2] mii: fix typo "asymetric" in comment
2026-09-04 10:41 [PATCH 0/2] mdio-mux: fix typos in comments Hemanth Selam
2026-09-04 10:41 ` [PATCH 1/2] mdio-mux: fix typo "framwork" in comment Hemanth Selam
@ 2026-09-04 10:41 ` Hemanth Selam
2026-09-04 13:17 ` Andrew Lunn
1 sibling, 1 reply; 5+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:41 UTC (permalink / raw)
To: Andrew Lunn, Heiner Kallweit, Russell King; +Cc: linux-kernel, netdev
Correct "asymetric" to "asymmetric", reported by scripts/checkpatch.pl
using the misspelling list in scripts/spelling.txt. Only touches comments,
no code changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
include/uapi/linux/mii.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/uapi/linux/mii.h b/include/uapi/linux/mii.h
index 61d6edad4b94..d662c10ee282 100644
--- a/include/uapi/linux/mii.h
+++ b/include/uapi/linux/mii.h
@@ -81,7 +81,7 @@
#define ADVERTISE_1000XPSE_ASYM 0x0100 /* Try for 1000BASE-X asym pause */
#define ADVERTISE_100BASE4 0x0200 /* Try for 100mbps 4k packets */
#define ADVERTISE_PAUSE_CAP 0x0400 /* Try for pause */
-#define ADVERTISE_PAUSE_ASYM 0x0800 /* Try for asymetric pause */
+#define ADVERTISE_PAUSE_ASYM 0x0800 /* Try for asymmetric pause */
#define ADVERTISE_XNP 0x1000 /* Extended Next Page */
#define ADVERTISE_RESV ADVERTISE_XNP /* Used to be reserved */
#define ADVERTISE_RFAULT 0x2000 /* Say we can detect faults */
--
2.48.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] mdio-mux: fix typo "framwork" in comment
2026-09-04 10:41 ` [PATCH 1/2] mdio-mux: fix typo "framwork" in comment Hemanth Selam
@ 2026-09-04 13:16 ` Andrew Lunn
0 siblings, 0 replies; 5+ messages in thread
From: Andrew Lunn @ 2026-09-04 13:16 UTC (permalink / raw)
To: Hemanth Selam; +Cc: Heiner Kallweit, Russell King, linux-kernel, netdev
On Fri, Sep 04, 2026 at 04:11:04PM +0530, Hemanth Selam wrote:
> Correct "framwork" to "framework", reported by scripts/checkpatch.pl using
> the misspelling list in scripts/spelling.txt. Only touches comments, no
> code changes.
>
> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
https://www.kernel.org/doc/html/latest/process/maintainer-netdev.html
You should set the Subject: line correctly to indicate net-next.
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Andrew
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] mii: fix typo "asymetric" in comment
2026-09-04 10:41 ` [PATCH 2/2] mii: fix typo "asymetric" " Hemanth Selam
@ 2026-09-04 13:17 ` Andrew Lunn
0 siblings, 0 replies; 5+ messages in thread
From: Andrew Lunn @ 2026-09-04 13:17 UTC (permalink / raw)
To: Hemanth Selam; +Cc: Heiner Kallweit, Russell King, linux-kernel, netdev
On Fri, Sep 04, 2026 at 04:11:05PM +0530, Hemanth Selam wrote:
> Correct "asymetric" to "asymmetric", reported by scripts/checkpatch.pl
> using the misspelling list in scripts/spelling.txt. Only touches comments,
> no code changes.
>
> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Andrew
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-09-04 13:17 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-04 10:41 [PATCH 0/2] mdio-mux: fix typos in comments Hemanth Selam
2026-09-04 10:41 ` [PATCH 1/2] mdio-mux: fix typo "framwork" in comment Hemanth Selam
2026-09-04 13:16 ` Andrew Lunn
2026-09-04 10:41 ` [PATCH 2/2] mii: fix typo "asymetric" " Hemanth Selam
2026-09-04 13:17 ` Andrew Lunn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®