cpufreq: Fix up printing large CPU numbers and frequency values
authorJoshua Yeong <joshua.yeong@starfivetech.com>
Thu, 25 Apr 2024 11:00:17 +0000 (19:00 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 30 Apr 2024 10:55:01 +0000 (12:55 +0200)
A negative CPU number or frequency value may be printed if they are
really large (which is unlikely, though).

Signed-off-by: Joshua Yeong <joshua.yeong@starfivetech.com>
Reviewed-by: Thorsten Blum <thorsten.blum@toblux.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
[ rjw: Subject and changelog edits. ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpufreq/freq_table.c

index 40e146942f3e308625ece5b5f3322b1c90113e3f..10e80d912b8d85259e77260fdf9a603ab95de70f 100644 (file)
@@ -194,7 +194,7 @@ int cpufreq_table_index_unsorted(struct cpufreq_policy *policy,
        }
        if (optimal.driver_data > i) {
                if (suboptimal.driver_data > i) {
-                       WARN(1, "Invalid frequency table: %d\n", policy->cpu);
+                       WARN(1, "Invalid frequency table: %u\n", policy->cpu);
                        return 0;
                }
 
@@ -254,7 +254,7 @@ static ssize_t show_available_freqs(struct cpufreq_policy *policy, char *buf,
                if (show_boost ^ (pos->flags & CPUFREQ_BOOST_FREQ))
                        continue;
 
-               count += sprintf(&buf[count], "%d ", pos->frequency);
+               count += sprintf(&buf[count], "%u ", pos->frequency);
        }
        count += sprintf(&buf[count], "\n");