* [PATCH 0/3] pcmcia: fix typos and repeated words in comments
@ 2026-09-04 10:59 Hemanth Selam
2026-09-04 10:59 ` [PATCH 1/3] pcmcia: fix typo "specifiy" in comment Hemanth Selam
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:59 UTC (permalink / raw)
Cc: linux-kernel
This corrects 3 misspellings and repeated words 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 (3):
pcmcia: fix typo "specifiy" in comment
pcmcia: fix repeated word 'both' in comment
pcmcia: fix repeated word in log message
drivers/pcmcia/pd6729.c | 2 +-
drivers/pcmcia/ti113x.h | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/3] pcmcia: fix typo "specifiy" in comment
2026-09-04 10:59 [PATCH 0/3] pcmcia: fix typos and repeated words in comments Hemanth Selam
@ 2026-09-04 10:59 ` Hemanth Selam
2026-09-04 10:59 ` [PATCH 2/3] pcmcia: fix repeated word 'both' " Hemanth Selam
2026-09-04 10:59 ` [PATCH 3/3] pcmcia: fix repeated word in log message Hemanth Selam
2 siblings, 0 replies; 4+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:59 UTC (permalink / raw)
To: Dominik Brodowski; +Cc: linux-kernel
Correct "specifiy" to "specify", 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>
---
drivers/pcmcia/ti113x.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pcmcia/ti113x.h b/drivers/pcmcia/ti113x.h
index 5cb670e037a0..9ff0deaf73ab 100644
--- a/drivers/pcmcia/ti113x.h
+++ b/drivers/pcmcia/ti113x.h
@@ -735,7 +735,7 @@ static int ti12xx_2nd_slot_empty(struct yenta_socket *socket)
}
/*
- * TI specifiy parts for the power hook.
+ * TI specify parts for the power hook.
*
* some TI's with some CB's produces interrupt storm on power on. it has been
* seen with atheros wlan cards on TI1225 and TI1410. solution is simply to
--
2.48.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/3] pcmcia: fix repeated word 'both' in comment
2026-09-04 10:59 [PATCH 0/3] pcmcia: fix typos and repeated words in comments Hemanth Selam
2026-09-04 10:59 ` [PATCH 1/3] pcmcia: fix typo "specifiy" in comment Hemanth Selam
@ 2026-09-04 10:59 ` Hemanth Selam
2026-09-04 10:59 ` [PATCH 3/3] pcmcia: fix repeated word in log message Hemanth Selam
2 siblings, 0 replies; 4+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:59 UTC (permalink / raw)
To: Dominik Brodowski; +Cc: linux-kernel
Drop the second 'both', reported by checkpatch.pl as a possible repeated
word. Only touches a comment, no code changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
drivers/pcmcia/ti113x.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pcmcia/ti113x.h b/drivers/pcmcia/ti113x.h
index 9ff0deaf73ab..9bb697b16aea 100644
--- a/drivers/pcmcia/ti113x.h
+++ b/drivers/pcmcia/ti113x.h
@@ -758,7 +758,7 @@ static int ti12xx_power_hook(struct pcmcia_socket *sock, int operation)
/*
* all serial/tied: only disable when modparm set. always doing it
* would mean a regression for working setups 'cos it disables the
- * interrupts for both both slots on 2-slot controllers
+ * interrupts for both slots on 2-slot controllers
* (and users of single slot controllers where it's save have to
* live with setting the modparm, most don't have to anyway)
*/
--
2.48.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 3/3] pcmcia: fix repeated word in log message
2026-09-04 10:59 [PATCH 0/3] pcmcia: fix typos and repeated words in comments Hemanth Selam
2026-09-04 10:59 ` [PATCH 1/3] pcmcia: fix typo "specifiy" in comment Hemanth Selam
2026-09-04 10:59 ` [PATCH 2/3] pcmcia: fix repeated word 'both' " Hemanth Selam
@ 2026-09-04 10:59 ` Hemanth Selam
2 siblings, 0 replies; 4+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:59 UTC (permalink / raw)
To: Dominik Brodowski; +Cc: linux-kernel
Drop the word written twice, reported by checkpatch.pl as a possible
repeated word.
Only the message text changes, no code changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
drivers/pcmcia/pd6729.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pcmcia/pd6729.c b/drivers/pcmcia/pd6729.c
index 1b62ca30d08a..c8c4127c95b0 100644
--- a/drivers/pcmcia/pd6729.c
+++ b/drivers/pcmcia/pd6729.c
@@ -479,7 +479,7 @@ static int pd6729_set_mem_map(struct pcmcia_socket *sock,
}
if ((mem->res->start > mem->res->end) || (mem->speed > 1000)) {
- dev_warn(&sock->dev, "invalid invalid address / speed\n");
+ dev_warn(&sock->dev, "invalid address / speed\n");
return -EINVAL;
}
--
2.48.1
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-09-04 11:00 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-04 10:59 [PATCH 0/3] pcmcia: fix typos and repeated words in comments Hemanth Selam
2026-09-04 10:59 ` [PATCH 1/3] pcmcia: fix typo "specifiy" in comment Hemanth Selam
2026-09-04 10:59 ` [PATCH 2/3] pcmcia: fix repeated word 'both' " Hemanth Selam
2026-09-04 10:59 ` [PATCH 3/3] pcmcia: fix repeated word in log message 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®