aboutsummaryrefslogtreecommitdiff
path: root/source/common/ahtable.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/common/ahtable.c')
-rw-r--r--source/common/ahtable.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/common/ahtable.c b/source/common/ahtable.c
index 67d1be06cc8c..43f2feecabcb 100644
--- a/source/common/ahtable.c
+++ b/source/common/ahtable.c
@@ -51,7 +51,7 @@ const AH_TABLE *
AcpiAhGetTableInfo (
char *Signature);
-extern const AH_TABLE AcpiSupportedTables[];
+extern const AH_TABLE Gbl_AcpiSupportedTables[];
/*******************************************************************************
@@ -73,7 +73,7 @@ AcpiAhGetTableInfo (
const AH_TABLE *Info;
- for (Info = AcpiSupportedTables; Info->Signature; Info++)
+ for (Info = Gbl_AcpiSupportedTables; Info->Signature; Info++)
{
if (ACPI_COMPARE_NAME (Signature, Info->Signature))
{
@@ -89,7 +89,7 @@ AcpiAhGetTableInfo (
* Note: Any tables added here should be duplicated within AcpiDmTableData
* in the file common/dmtable.c
*/
-const AH_TABLE AcpiSupportedTables[] =
+const AH_TABLE Gbl_AcpiSupportedTables[] =
{
{ACPI_SIG_ASF, "Alert Standard Format table"},
{ACPI_SIG_BERT, "Boot Error Record Table"},