X86: Add extended Intel MP entries correctly.
This commit is contained in:
parent
06cdbe5ea7
commit
f3b8371dfc
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ class X86IntelMPConfigTable(SimObject):
|
||||||
if isinstance(entry, X86IntelMPBaseConfigEntry):
|
if isinstance(entry, X86IntelMPBaseConfigEntry):
|
||||||
self.base_entries.append(entry)
|
self.base_entries.append(entry)
|
||||||
elif isinstance(entry, X86IntelMPExtConfigEntry):
|
elif isinstance(entry, X86IntelMPExtConfigEntry):
|
||||||
self.base_entries.append(entry)
|
self.ext_entries.append(entry)
|
||||||
else:
|
else:
|
||||||
panic("Don't know what type of Intel MP entry %s is." \
|
panic("Don't know what type of Intel MP entry %s is." \
|
||||||
% entry.__class__.__name__)
|
% entry.__class__.__name__)
|
||||||
|
|
Loading…
Reference in a new issue