* [PATCH 0/2] firmware: fix typos in comments
@ 2026-09-07 6:17 Hemanth Selam
2026-09-07 6:17 ` [PATCH 1/2] firmware: qcom: fix typo "uninterruptable" in comment Hemanth Selam
2026-09-07 6:17 ` [PATCH 2/2] soc: qcom: fix typo "upto" " Hemanth Selam
0 siblings, 2 replies; 5+ messages in thread
From: Hemanth Selam @ 2026-09-07 6:17 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio; +Cc: linux-arm-msm, 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):
firmware: qcom: fix typo "uninterruptable" in comment
soc: qcom: fix typo "upto" in comment
drivers/firmware/qcom/qcom_scm-legacy.c | 2 +-
drivers/soc/qcom/qcom-geni-se.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] firmware: qcom: fix typo "uninterruptable" in comment
2026-09-07 6:17 [PATCH 0/2] firmware: fix typos in comments Hemanth Selam
@ 2026-09-07 6:17 ` Hemanth Selam
2026-09-07 7:28 ` Konrad Dybcio
2026-09-07 6:17 ` [PATCH 2/2] soc: qcom: fix typo "upto" " Hemanth Selam
1 sibling, 1 reply; 5+ messages in thread
From: Hemanth Selam @ 2026-09-07 6:17 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio; +Cc: linux-arm-msm, linux-kernel
Correct "uninterruptable" to "uninterruptible", 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/firmware/qcom/qcom_scm-legacy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/firmware/qcom/qcom_scm-legacy.c b/drivers/firmware/qcom/qcom_scm-legacy.c
index 029e6d117cb8..fe751ee512da 100644
--- a/drivers/firmware/qcom/qcom_scm-legacy.c
+++ b/drivers/firmware/qcom/qcom_scm-legacy.c
@@ -219,7 +219,7 @@ int scm_legacy_call(struct device *dev, const struct qcom_scm_desc *desc,
* @res: SCM call return values
*
* This shall only be used with commands that are guaranteed to be
- * uninterruptable, atomic and SMP safe.
+ * uninterruptible, atomic and SMP safe.
*/
int scm_legacy_call_atomic(struct device *unused,
const struct qcom_scm_desc *desc,
--
2.48.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/2] soc: qcom: fix typo "upto" in comment
2026-09-07 6:17 [PATCH 0/2] firmware: fix typos in comments Hemanth Selam
2026-09-07 6:17 ` [PATCH 1/2] firmware: qcom: fix typo "uninterruptable" in comment Hemanth Selam
@ 2026-09-07 6:17 ` Hemanth Selam
2026-09-07 7:28 ` Konrad Dybcio
1 sibling, 1 reply; 5+ messages in thread
From: Hemanth Selam @ 2026-09-07 6:17 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio; +Cc: linux-arm-msm, linux-kernel
Correct "upto" to "up to", 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/soc/qcom/qcom-geni-se.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/soc/qcom/qcom-geni-se.c b/drivers/soc/qcom/qcom-geni-se.c
index 873bfbd6b2b7..6b42da3b6c5e 100644
--- a/drivers/soc/qcom/qcom-geni-se.c
+++ b/drivers/soc/qcom/qcom-geni-se.c
@@ -42,7 +42,7 @@ EXPORT_TRACEPOINT_SYMBOL_GPL(geni_se_regs);
*
* GENI based QUP is a highly-flexible and programmable module for supporting
* a wide range of serial interfaces like UART, SPI, I2C, I3C, etc. A single
- * QUP module can provide upto 8 serial interfaces, using its internal
+ * QUP module can provide up to 8 serial interfaces, using its internal
* serial engines. The actual configuration is determined by the target
* platform configuration. The protocol supported by each interface is
* determined by the firmware loaded to the serial engine. Each SE consists
--
2.48.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] soc: qcom: fix typo "upto" in comment
2026-09-07 6:17 ` [PATCH 2/2] soc: qcom: fix typo "upto" " Hemanth Selam
@ 2026-09-07 7:28 ` Konrad Dybcio
0 siblings, 0 replies; 5+ messages in thread
From: Konrad Dybcio @ 2026-09-07 7:28 UTC (permalink / raw)
To: Hemanth Selam, Bjorn Andersson, Konrad Dybcio; +Cc: linux-arm-msm, linux-kernel
On 9/7/26 8:17 AM, Hemanth Selam wrote:
> Correct "upto" to "up to", 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: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] firmware: qcom: fix typo "uninterruptable" in comment
2026-09-07 6:17 ` [PATCH 1/2] firmware: qcom: fix typo "uninterruptable" in comment Hemanth Selam
@ 2026-09-07 7:28 ` Konrad Dybcio
0 siblings, 0 replies; 5+ messages in thread
From: Konrad Dybcio @ 2026-09-07 7:28 UTC (permalink / raw)
To: Hemanth Selam, Bjorn Andersson, Konrad Dybcio; +Cc: linux-arm-msm, linux-kernel
On 9/7/26 8:17 AM, Hemanth Selam wrote:
> Correct "uninterruptable" to "uninterruptible", 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: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Konrad
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-09-07 7:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-07 6:17 [PATCH 0/2] firmware: fix typos in comments Hemanth Selam
2026-09-07 6:17 ` [PATCH 1/2] firmware: qcom: fix typo "uninterruptable" in comment Hemanth Selam
2026-09-07 7:28 ` Konrad Dybcio
2026-09-07 6:17 ` [PATCH 2/2] soc: qcom: fix typo "upto" " Hemanth Selam
2026-09-07 7:28 ` Konrad Dybcio
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®