diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-10-08 22:23:23 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-22 09:54:54 -0400 |
commit | dcf16721c1df2a97b7836677d704e49d6cdf455f (patch) | |
tree | ebfdbb0148b693c0d833dfab04f1470218bf0f2f /include | |
parent | cfec8d36cebb8668c02ec2ff6aafa79ee382ce3c (diff) | |
download | u-boot-dcf16721c1df2a97b7836677d704e49d6cdf455f.zip u-boot-dcf16721c1df2a97b7836677d704e49d6cdf455f.tar.gz u-boot-dcf16721c1df2a97b7836677d704e49d6cdf455f.tar.bz2 |
lib: print_freq() should output kHz not KHz
In the International System of Units (SI) the prefix kilo is abbreviated as
'k' not 'K'. 'K' is the symbol for Kelvin.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/display_options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/display_options.h b/include/display_options.h index a0dabca..049688e 100644 --- a/include/display_options.h +++ b/include/display_options.h @@ -24,7 +24,7 @@ void print_size(uint64_t size, const char *suffix); /** * print_freq() - Print a frequency with a suffix * - * Print frequencies as "x.xx GHz", "xxx KHz", etc as needed; allow for + * Print frequencies as "x.xx GHz", "xxx kHz", etc as needed; allow for * optional trailing string (like "\n") * * @freq: Frequency to print in Hz |