summaryrefslogtreecommitdiff
path: root/Core/EM/ACPI
diff options
context:
space:
mode:
Diffstat (limited to 'Core/EM/ACPI')
-rw-r--r--Core/EM/ACPI/AcpiCore.c4
-rw-r--r--Core/EM/ACPI/mptable.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/Core/EM/ACPI/AcpiCore.c b/Core/EM/ACPI/AcpiCore.c
index 7cb3366..fa37a46 100644
--- a/Core/EM/ACPI/AcpiCore.c
+++ b/Core/EM/ACPI/AcpiCore.c
@@ -586,8 +586,8 @@ MADT_ENTRY_HEADER * BuildLocalApicNmi(
IN UINT16 Flags
);
-UINT8 ACPI_OEM_ID[6] = ACPI_OEM_ID_MAK; //"A M I"; //add 0 at the end.OemId 6 bytes
-UINT8 ACPI_OEM_TBL_ID[8] = ACPI_OEM_TBL_ID_MAK; //"ALASKA"; //add 0 at the end.OemTableId 8 bytes
+UINT8 ACPI_OEM_ID[6] = T_ACPI_OEM_ID ;//ACPI_OEM_ID_MAK; //"A M I"; //add 0 at the end.OemId 6 bytes
+UINT8 ACPI_OEM_TBL_ID[8] = T_ACPI_OEM_TBL_ID ;//ACPI_OEM_TBL_ID_MAK; //"ALASKA"; //add 0 at the end.OemTableId 8 bytes
#if defined(OemActivation_SUPPORT) && (OemActivation_SUPPORT == 1)
#define EFI_OA3_MSDM_VARIABLE L"OA3MSDMvariable"
diff --git a/Core/EM/ACPI/mptable.c b/Core/EM/ACPI/mptable.c
index 66fe0d4..9260a7b 100644
--- a/Core/EM/ACPI/mptable.c
+++ b/Core/EM/ACPI/mptable.c
@@ -188,8 +188,8 @@ static VOID *MpsExTableCurrentPointer = NULL;
static UINT16 BaseTableLength = 0;
static UINT16 BaseTableEntryCount = 0;
static UINT16 ExtendedTableLength = 0;
-static UINT8 OemId[8] = CONVERT_TO_STRING(T_ACPI_OEM_TBL_ID); //{ 0,1,2,3,4,5,6,7 };
-static UINT8 ProductId[12] = CONVERT_TO_STRING(T_ACPI_OEM_ID); //{ 0,1,2,3,4,5,6,7,8,9,0xA, 0xB };
+static UINT8 OemId[8] = T_ACPI_OEM_TBL_ID ;//CONVERT_TO_STRING(T_ACPI_OEM_TBL_ID); //{ 0,1,2,3,4,5,6,7 };
+static UINT8 ProductId[12] = T_ACPI_OEM_ID ;//CONVERT_TO_STRING(T_ACPI_OEM_ID); //{ 0,1,2,3,4,5,6,7,8,9,0xA, 0xB };
static BUS_INFO BusEntry[MP_TABLE_MAX_BUS_ENTRIES];
static UINT8 MaxBusId = 0;