mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
tools/power x86_energy_perf_policy: fix print of uninitialized string
Looks like I was going to stick the brand string in the verbose ouput, but didn't get around to it. Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
1765a367a3
commit
e4c0d0e22c
1 changed files with 2 additions and 3 deletions
|
@ -137,7 +137,6 @@ void cmdline(int argc, char **argv)
|
|||
void validate_cpuid(void)
|
||||
{
|
||||
unsigned int eax, ebx, ecx, edx, max_level;
|
||||
char brand[16];
|
||||
unsigned int fms, family, model, stepping;
|
||||
|
||||
eax = ebx = ecx = edx = 0;
|
||||
|
@ -160,8 +159,8 @@ void validate_cpuid(void)
|
|||
model += ((fms >> 16) & 0xf) << 4;
|
||||
|
||||
if (verbose > 1)
|
||||
printf("CPUID %s %d levels family:model:stepping "
|
||||
"0x%x:%x:%x (%d:%d:%d)\n", brand, max_level,
|
||||
printf("CPUID %d levels family:model:stepping "
|
||||
"0x%x:%x:%x (%d:%d:%d)\n", max_level,
|
||||
family, model, stepping, family, model, stepping);
|
||||
|
||||
if (!(edx & (1 << 5))) {
|
||||
|
|
Loading…
Reference in a new issue