Skip to content

Commit 193f41d

Browse files
r-riccishuahkh
authored andcommitted
cpupower-idle-info.1: fix short option names
The cpupower-idle-info(1) man page describes '-f' as the short form of the '--silent' option and '-e' as the short form of the '--proc' option. But they are not correct: $ cpupower idle-info -f idle-info: invalid option -- 'f' invalid or unknown argument $ cpupower idle-info -e idle-info: invalid option -- 'e' invalid or unknown argument The short form of '--silent' is actually '-s' and the short form of '--proc' is actually '-o': cpuidle-info.c: {"silent", no_argument, NULL, 's'}, {"proc", no_argument, NULL, 'o'}, Signed-off-by: Roberto Ricci <io@r-ricci.it> Link: https://lore.kernel.org/r/20260324223921.14317-2-io@r-ricci.it Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
1 parent c369299 commit 193f41d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/power/cpupower/man/cpupower-idle-info.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ A tool which prints out per cpu idle information helpful to developers and inter
1111
.SH "OPTIONS"
1212
.LP
1313
.TP
14-
\fB\-f\fR \fB\-\-silent\fR
14+
\fB\-s\fR \fB\-\-silent\fR
1515
Only print a summary of all available C-states in the system.
1616
.TP
17-
\fB\-e\fR \fB\-\-proc\fR
17+
\fB\-o\fR \fB\-\-proc\fR
1818
deprecated.
1919
Prints out idle information in old /proc/acpi/processor/*/power format. This
2020
interface has been removed from the kernel for quite some time, do not let

0 commit comments

Comments
 (0)