summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiewen Yao <jiewen.yao@intel.com>2018-04-02 15:48:29 +0800
committerJiewen Yao <jiewen.yao@intel.com>2018-04-02 15:48:29 +0800
commite774d7ed2b6f9cb906ca43de213d129ebfa3a0eb (patch)
tree71ab1d7790f33dd1dccb2acd3cb999ca6021306a
parente19b363ba0310545cbeaeabb47a79acf5972c78f (diff)
downloadedk2-platforms-e774d7ed2b6f9cb906ca43de213d129ebfa3a0eb.tar.xz
MinPlatformPkg: Dont assert for HT off
Dont assert for single core, single thread. contributed-under: tianocore contribution agreement 1.1 Signed-off-by: Pai-chingX Chen <pai-chingx.chen@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
-rw-r--r--Platform/Intel/MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Platform/Intel/MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.c b/Platform/Intel/MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.c
index c71bf1ae50..ff7d64a439 100644
--- a/Platform/Intel/MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.c
+++ b/Platform/Intel/MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.c
@@ -140,7 +140,8 @@ VOID DetectApicIdMap(VOID)
DEBUG ((DEBUG_INFO, "CoreCount - %d\n", CoreCount));
//DEBUG((EFI_D_ERROR, ":: Default to use Map A @ %08X FusedCoreCount: %02d, sktlevel: %d\n",mApicIdMap, FusedCoreCount, mNumOfBitShift));
- ASSERT (CoreCount != 0);
+ // Dont assert for single core, single thread system.
+ //ASSERT (CoreCount != 0);
if(CoreCount <= 16) {