mirror of
https://github.com/acpica/acpica/
synced 2025-02-05 08:04:11 +03:00
date 99.07.29.21.14.00; author rmosgrov; state Exp;
This commit is contained in:
parent
a7f04dba02
commit
68582c939a
@ -195,7 +195,9 @@ CmGetTableRsdt (
|
||||
/* Save the table pointers and allocation info */
|
||||
|
||||
RSDP = (ROOT_SYSTEM_DESCRIPTOR_POINTER *) TableInfo.Pointer;
|
||||
AcpiTables [TABLE_RSDP] = TableInfo;
|
||||
AcpiTables[TABLE_RSDP].Pointer = TableInfo.Pointer;
|
||||
AcpiTables[TABLE_RSDP].Length = TableInfo.Length;
|
||||
AcpiTables[TABLE_RSDP].Allocation = TableInfo.Allocation;
|
||||
|
||||
/* RSDP structure was found */
|
||||
|
||||
@ -236,7 +238,9 @@ CmGetTableRsdt (
|
||||
/* Save the table pointers and allocation info */
|
||||
|
||||
RSDT = (ROOT_SYSTEM_DESCRIPTION_TABLE *) TableInfo.Pointer;
|
||||
AcpiTables [TABLE_RSDT] = TableInfo;
|
||||
AcpiTables[TABLE_RSDP].Pointer = TableInfo.Pointer;
|
||||
AcpiTables[TABLE_RSDP].Length = TableInfo.Length;
|
||||
AcpiTables[TABLE_RSDP].Allocation = TableInfo.Allocation;
|
||||
|
||||
/* Valid RSDT pointer */
|
||||
|
||||
@ -411,7 +415,9 @@ CmInstallTable (
|
||||
/* Save the table pointers and allocation info */
|
||||
|
||||
*TableGlobalPtr = TableHeader;
|
||||
AcpiTables [TableType] = *TableInfo;
|
||||
AcpiTables[TableType].Pointer = TableInfo->Pointer;
|
||||
AcpiTables[TableType].Length = TableInfo->Length;
|
||||
AcpiTables[TableType].Allocation = TableInfo->Allocation;
|
||||
|
||||
DEBUG_PRINT (ACPI_INFO, ("%s located at %p\n", TableName, TableHeader));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user