summaryrefslogtreecommitdiff
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 59ddc836e..67d1eea1f 100644
--- a/source/common/ahtable.c
+++ b/source/common/ahtable.c
@@ -123,7 +123,7 @@ const AH_TABLE *
AcpiAhGetTableInfo (
char *Signature);
-extern const AH_TABLE AcpiSupportedTables[];
+extern const AH_TABLE Gbl_AcpiSupportedTables[];
/*******************************************************************************
@@ -145,7 +145,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))
{
@@ -161,7 +161,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"},