diff options
-rw-r--r-- | src/arch/x86/bios/IntelMP.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/bios/IntelMP.py b/src/arch/x86/bios/IntelMP.py index 1b9e819b3..04e79b6ac 100644 --- a/src/arch/x86/bios/IntelMP.py +++ b/src/arch/x86/bios/IntelMP.py @@ -90,7 +90,7 @@ class X86IntelMPConfigTable(SimObject): if isinstance(entry, X86IntelMPBaseConfigEntry): self.base_entries.append(entry) elif isinstance(entry, X86IntelMPExtConfigEntry): - self.base_entries.append(entry) + self.ext_entries.append(entry) else: panic("Don't know what type of Intel MP entry %s is." \ % entry.__class__.__name__) |