* [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments
@ 2026-09-07 9:51 Hemanth Selam
2026-09-07 9:51 ` [PATCH wpan-next v2 1/2] ieee802154: at86rf230: fix typo "upto" in comment Hemanth Selam
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Hemanth Selam @ 2026-09-07 9:51 UTC (permalink / raw)
To: Alexander Aring, Stefan Schmidt, Miquel Raynal, Andrew Lunn,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Simon Horman
Cc: linux-wpan, netdev, linux-kernel
Two comment typos under 802.15.4, split per component. Found with scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt. Comments only, no code
changes.
v1 went out with a bare [PATCH] and a "net:" subject prefix. As
maintainer-netdev.rst asks, v2 designates the patches to a tree, and
each subject now names the component it touches instead of "net:". The
series is rebased onto that tree; the diff is unchanged.
v1: https://lore.kernel.org/all/20260907064346.3288-1-hemanth.selam@gmail.com/
Hemanth Selam (2):
ieee802154: at86rf230: fix typo "upto" in comment
mac802154: fix typo "substract" in comment
drivers/net/ieee802154/at86rf230.c | 2 +-
net/mac802154/iface.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH wpan-next v2 1/2] ieee802154: at86rf230: fix typo "upto" in comment
2026-09-07 9:51 [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments Hemanth Selam
@ 2026-09-07 9:51 ` Hemanth Selam
2026-09-07 9:51 ` [PATCH wpan-next v2 2/2] mac802154: fix typo "substract" " Hemanth Selam
2026-09-07 10:07 ` [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments Miquel Raynal
2 siblings, 0 replies; 5+ messages in thread
From: Hemanth Selam @ 2026-09-07 9:51 UTC (permalink / raw)
To: Alexander Aring, Stefan Schmidt, Miquel Raynal, Andrew Lunn,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Simon Horman
Cc: linux-wpan, netdev, linux-kernel
Fix a typo in comments, found with 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>
---
Notes:
v2: designate the patch to wpan-next and use a subject prefix naming the
component, as maintainer-netdev.rst asks; v1 went out with a bare
[PATCH] and a "net:" prefix. Rebased onto wpan-next, diff unchanged.
v1: https://lore.kernel.org/all/20260907064346.3288-1-hemanth.selam@gmail.com/
drivers/net/ieee802154/at86rf230.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c
index 6156cf379916..f1adca942e3d 100644
--- a/drivers/net/ieee802154/at86rf230.c
+++ b/drivers/net/ieee802154/at86rf230.c
@@ -1370,7 +1370,7 @@ static int at86rf230_hw_init(struct at86rf230_local *lp, u8 xtal_trim)
* but this is different on each board setup. You need to fine
* tuning this value via CTRIM.
* CTRIM = variable capacitor setting. Resolution is 0.3 pF range is
- * 0 pF upto 4.5 pF.
+ * 0 pF up to 4.5 pF.
*
* Examples:
* atben transceiver:
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH wpan-next v2 2/2] mac802154: fix typo "substract" in comment
2026-09-07 9:51 [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments Hemanth Selam
2026-09-07 9:51 ` [PATCH wpan-next v2 1/2] ieee802154: at86rf230: fix typo "upto" in comment Hemanth Selam
@ 2026-09-07 9:51 ` Hemanth Selam
2026-09-07 10:07 ` [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments Miquel Raynal
2 siblings, 0 replies; 5+ messages in thread
From: Hemanth Selam @ 2026-09-07 9:51 UTC (permalink / raw)
To: Alexander Aring, Stefan Schmidt, Miquel Raynal, Andrew Lunn,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Simon Horman
Cc: linux-wpan, netdev, linux-kernel
Fix a typo in comments, found with 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>
---
Notes:
v2: designate the patch to wpan-next and use a subject prefix naming the
component, as maintainer-netdev.rst asks; v1 went out with a bare
[PATCH] and a "net:" prefix. Rebased onto wpan-next, diff unchanged.
v1: https://lore.kernel.org/all/20260907064346.3288-1-hemanth.selam@gmail.com/
net/mac802154/iface.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/mac802154/iface.c b/net/mac802154/iface.c
index 000be60d9580..8f3968d2e516 100644
--- a/net/mac802154/iface.c
+++ b/net/mac802154/iface.c
@@ -521,7 +521,7 @@ static void ieee802154_if_setup(struct net_device *dev)
/* Let hard_header_len set to IEEE802154_MIN_HEADER_LEN. AF_PACKET
* will not send frames without any payload, but ack frames
- * has no payload, so substract one that we can send a 3 bytes
+ * has no payload, so subtract one that we can send a 3 bytes
* frame. The xmit callback assumes at least a hard header where two
* bytes fc and sequence field are set.
*/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments
2026-09-07 9:51 [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments Hemanth Selam
2026-09-07 9:51 ` [PATCH wpan-next v2 1/2] ieee802154: at86rf230: fix typo "upto" in comment Hemanth Selam
2026-09-07 9:51 ` [PATCH wpan-next v2 2/2] mac802154: fix typo "substract" " Hemanth Selam
@ 2026-09-07 10:07 ` Miquel Raynal
2026-09-07 11:42 ` Hemanth Selam
2 siblings, 1 reply; 5+ messages in thread
From: Miquel Raynal @ 2026-09-07 10:07 UTC (permalink / raw)
To: Hemanth Selam
Cc: Alexander Aring, Stefan Schmidt, Andrew Lunn, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
linux-wpan, netdev, linux-kernel
On 07/09/2026 at 15:21:30 +0530, Hemanth Selam <hemanth.selam@gmail.com> wrote:
> Two comment typos under 802.15.4, split per component. Found with scripts/checkpatch.pl using the
> misspelling list in scripts/spelling.txt. Comments only, no code
> changes.
>
> v1 went out with a bare [PATCH] and a "net:" subject prefix. As
> maintainer-netdev.rst asks, v2 designates the patches to a tree, and
> each subject now names the component it touches instead of "net:". The
> series is rebased onto that tree; the diff is unchanged.
I didn't ask for a split, we can abuse the prefix in that case.
You should not have dropped my R-by tag though, given the fact that the
diff is strictly identical.
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
No need to resend again though.
Thanks,
Miquèl
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments
2026-09-07 10:07 ` [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments Miquel Raynal
@ 2026-09-07 11:42 ` Hemanth Selam
0 siblings, 0 replies; 5+ messages in thread
From: Hemanth Selam @ 2026-09-07 11:42 UTC (permalink / raw)
To: Miquel Raynal
Cc: Alexander Aring, Stefan Schmidt, Andrew Lunn, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
linux-wpan, netdev, linux-kernel
On Mon, 07 Sep 2026, Miquel Raynal wrote:
> You should not have dropped my R-by tag though, given the fact that the
> diff is strictly identical.
You are right, and I am sorry. The diff was unchanged, so your tag should
have been carried over. I rebuilt the series from the commits rather than
from the posted patches and lost the trailer on the way; that is my
mistake, not something you should have had to chase.
Thanks for re-giving it, and for the note on the split. I split by
component because maintainer-netdev.rst asks the prefix to name the code
being touched, and I could not see how to name both drivers/net/ieee802154
and net/mac802154 in one prefix. Abusing the prefix is fine by me next
time.
I will not resend, as you asked.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-09-07 11:42 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-07 9:51 [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments Hemanth Selam
2026-09-07 9:51 ` [PATCH wpan-next v2 1/2] ieee802154: at86rf230: fix typo "upto" in comment Hemanth Selam
2026-09-07 9:51 ` [PATCH wpan-next v2 2/2] mac802154: fix typo "substract" " Hemanth Selam
2026-09-07 10:07 ` [PATCH wpan-next v2 0/2] ieee802154: fix typos in comments Miquel Raynal
2026-09-07 11:42 ` Hemanth Selam
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®