* [PATCH] cpupower: fix typos in comments
@ 2026-09-04 12:40 Hemanth Selam
2026-09-04 17:31 ` Shuah Khan
0 siblings, 1 reply; 3+ messages in thread
From: Hemanth Selam @ 2026-09-04 12:40 UTC (permalink / raw)
To: Thomas Renninger, Shuah Khan, John B. Wyatt IV, John Kacur
Cc: linux-kernel, linux-pm
Fix typos in comments, 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>
---
tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c | 4 ++--
tools/power/cpupower/utils/idle_monitor/mperf_monitor.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
index e8b3841d5c0f..b15371e3e6bd 100644
--- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
+++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
@@ -72,7 +72,7 @@ void print_n_spaces(int n)
}
/*s is filled with left and right spaces
- *to make its length atleast n+1
+ *to make its length at least n+1
*/
int fill_string_with_spaces(char *s, int n)
{
@@ -263,7 +263,7 @@ static void parse_monitor_param(char *param)
"try -l option\n"), param);
exit(EXIT_FAILURE);
}
- /* Override detected/registerd monitors array with requested one */
+ /* Override detected/registered monitors array with requested one */
memcpy(monitors, tmp_mons,
sizeof(struct cpuidle_monitor *) * MONITORS_MAX);
avail_monitors = hits;
diff --git a/tools/power/cpupower/utils/idle_monitor/mperf_monitor.c b/tools/power/cpupower/utils/idle_monitor/mperf_monitor.c
index 5ae02c3d5b64..62b8cfb02040 100644
--- a/tools/power/cpupower/utils/idle_monitor/mperf_monitor.c
+++ b/tools/power/cpupower/utils/idle_monitor/mperf_monitor.c
@@ -276,7 +276,7 @@ static int init_maxfreq_mode(void)
cpupower_cpu_info.vendor == X86_VENDOR_HYGON) {
/* MSR_AMD_HWCR tells us whether TSC runs at P0/mperf
* freq.
- * A test whether hwcr is accessable/available would be:
+ * A test whether hwcr is accessible/available would be:
* (cpupower_cpu_info.family > 0x10 ||
* cpupower_cpu_info.family == 0x10 &&
* cpupower_cpu_info.model >= 0x2))
--
2.48.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] cpupower: fix typos in comments
2026-09-04 12:40 [PATCH] cpupower: fix typos in comments Hemanth Selam
@ 2026-09-04 17:31 ` Shuah Khan
2026-09-07 4:39 ` Hemanth Selam
0 siblings, 1 reply; 3+ messages in thread
From: Shuah Khan @ 2026-09-04 17:31 UTC (permalink / raw)
To: Hemanth Selam, Thomas Renninger, Shuah Khan, John B. Wyatt IV,
John Kacur
Cc: linux-kernel, linux-pm, Shuah Khan
On 9/4/26 06:40, Hemanth Selam wrote:
> Fix typos in comments, 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
Why do you need AI assistance to fix typos found by checkpatch.pl?
How did Cursor:claude-opus-5 assist you?
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
> ---
> tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c | 4 ++--
> tools/power/cpupower/utils/idle_monitor/mperf_monitor.c | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
> index e8b3841d5c0f..b15371e3e6bd 100644
> --- a/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
> +++ b/tools/power/cpupower/utils/idle_monitor/cpupower-monitor.c
> @@ -72,7 +72,7 @@ void print_n_spaces(int n)
> }
>
> /*s is filled with left and right spaces
> - *to make its length atleast n+1
> + *to make its length at least n+1
> */
> int fill_string_with_spaces(char *s, int n)
> {
> @@ -263,7 +263,7 @@ static void parse_monitor_param(char *param)
> "try -l option\n"), param);
> exit(EXIT_FAILURE);
> }
> - /* Override detected/registerd monitors array with requested one */
> + /* Override detected/registered monitors array with requested one */
> memcpy(monitors, tmp_mons,
> sizeof(struct cpuidle_monitor *) * MONITORS_MAX);
> avail_monitors = hits;
> diff --git a/tools/power/cpupower/utils/idle_monitor/mperf_monitor.c b/tools/power/cpupower/utils/idle_monitor/mperf_monitor.c
> index 5ae02c3d5b64..62b8cfb02040 100644
> --- a/tools/power/cpupower/utils/idle_monitor/mperf_monitor.c
> +++ b/tools/power/cpupower/utils/idle_monitor/mperf_monitor.c
> @@ -276,7 +276,7 @@ static int init_maxfreq_mode(void)
> cpupower_cpu_info.vendor == X86_VENDOR_HYGON) {
> /* MSR_AMD_HWCR tells us whether TSC runs at P0/mperf
> * freq.
> - * A test whether hwcr is accessable/available would be:
> + * A test whether hwcr is accessible/available would be:
> * (cpupower_cpu_info.family > 0x10 ||
> * cpupower_cpu_info.family == 0x10 &&
> * cpupower_cpu_info.model >= 0x2))
thanks,
-- Shuah
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] cpupower: fix typos in comments
2026-09-04 17:31 ` Shuah Khan
@ 2026-09-07 4:39 ` Hemanth Selam
0 siblings, 0 replies; 3+ messages in thread
From: Hemanth Selam @ 2026-09-07 4:39 UTC (permalink / raw)
To: Shuah Khan
Cc: Thomas Renninger, Shuah Khan, John B. Wyatt IV, John Kacur,
linux-kernel, linux-pm
Fair question, and the honest answer is that I did not need it for the
typos themselves.
checkpatch and codespell found every word in this series. What the
assistant did was the work around that: splitting several hundred one-line
fixes into per-subsystem patches, running get_maintainer.pl to decide who
each one goes to, and drafting the changelogs. No part of the diff was
model-generated - each change is the substitution checkpatch printed.
The Assisted-by: tag names the tool and model because
Documentation/process/coding-assistants.rst asks for the tool to be
identified, and the prevailing form in the tree is Vendor:model.
I should add that the review this series has had since Friday has turned up
cases where the mechanical fix was simply wrong - deleting a word from
"kicks in in a timely manner", for instance. I am auditing the rest and
withdrawing the bad ones rather than leaving them for maintainers to catch.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-07 4:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-04 12:40 [PATCH] cpupower: fix typos in comments Hemanth Selam
2026-09-04 17:31 ` Shuah Khan
2026-09-07 4:39 ` Hemanth Selam
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).