ACK: [PATCH 1/4] cpu: cpufreq: add more precision to GHz CPU frequency information
Alex Hung
alex.hung at canonical.com
Wed May 28 03:29:18 UTC 2014
On 05/23/2014 08:42 PM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
>
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
> src/cpu/cpufreq/cpufreq.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/src/cpu/cpufreq/cpufreq.c b/src/cpu/cpufreq/cpufreq.c
> index 4ec1f12..39d22ae 100644
> --- a/src/cpu/cpufreq/cpufreq.c
> +++ b/src/cpu/cpufreq/cpufreq.c
> @@ -175,8 +175,8 @@ static char *hz_to_human(const uint64_t hz)
> {
> static char buffer[32];
>
> - if (hz > 1500000) {
> - snprintf(buffer, sizeof(buffer), "%.2f GHz",
> + if (hz > 1000000) {
> + snprintf(buffer, sizeof(buffer), "%6.3f GHz",
> (hz+50000.0) / 1000000);
> return buffer;
> } else if (hz > 1000) {
>
Acked-by: Alex Hung <alex.hung at canonical.com>
More information about the fwts-devel
mailing list