Skip to content

Commit

Permalink
OcCpuLib: Print Max CPUIDs
Browse files Browse the repository at this point in the history
  • Loading branch information
vit9696 committed Sep 11, 2021
1 parent c20928f commit 072b705
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Library/OcCpuLib/OcCpuLib.c
Original file line number Diff line number Diff line change
Expand Up @@ -857,15 +857,17 @@ OcCpuScanProcessor (

DEBUG ((
DEBUG_INFO,
"OCCPU: Signature %0X Stepping %0X Model %0X Family %0X Type %0X ExtModel %0X ExtFamily %0X uCode %0X\n",
"OCCPU: Signature %0X Stepping %0X Model %0X Family %0X Type %0X ExtModel %0X ExtFamily %0X uCode %0X CPUID MAX (%0X/%0X)\n",
Cpu->Signature,
Cpu->Stepping,
Cpu->Model,
Cpu->Family,
Cpu->Type,
Cpu->ExtModel,
Cpu->ExtFamily,
Cpu->MicrocodeRevision
Cpu->MicrocodeRevision,
Cpu->MaxId,
Cpu->MaxExtId
));

Cpu->CPUFrequencyFromVMT = InternalCalculateVMTFrequency (
Expand Down

0 comments on commit 072b705

Please sign in to comment.