summaryrefslogtreecommitdiff
path: root/src/arch/x86/bios/IntelMP.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/bios/IntelMP.py')
-rw-r--r--src/arch/x86/bios/IntelMP.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/x86/bios/IntelMP.py b/src/arch/x86/bios/IntelMP.py
index 758932180..1b9e819b3 100644
--- a/src/arch/x86/bios/IntelMP.py
+++ b/src/arch/x86/bios/IntelMP.py
@@ -115,9 +115,9 @@ class X86IntelMPProcessor(X86IntelMPBaseConfigEntry):
enable = Param.Bool(True, 'if this processor is usable')
bootstrap = Param.Bool(False, 'if this is the bootstrap processor')
- stepping = Param.UInt8(0)
- model = Param.UInt8(0)
- family = Param.UInt8(0)
+ stepping = Param.UInt8(0, 'Processor stepping')
+ model = Param.UInt8(0, 'Processor model')
+ family = Param.UInt8(0, 'Processor family')
feature_flags = Param.UInt32(0, 'flags returned by the CPUID instruction')