From e774d7ed2b6f9cb906ca43de213d129ebfa3a0eb Mon Sep 17 00:00:00 2001 From: Jiewen Yao Date: Mon, 2 Apr 2018 15:48:29 +0800 Subject: 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 Reviewed-by: Jiewen Yao --- Platform/Intel/MinPlatformPkg/Acpi/AcpiTables/AcpiPlatform.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) { -- cgit v1.2.3