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 740ab538b3c7..7d5833e586fd 100644
--- a/source/common/ahtable.c
+++ b/source/common/ahtable.c
@@ -159,7 +159,7 @@ const AH_TABLE *
AcpiAhGetTableInfo (
char *Signature);
-extern const AH_TABLE Gbl_AcpiSupportedTables[];
+extern const AH_TABLE AcpiGbl_SupportedTables[];
/*******************************************************************************
@@ -181,7 +181,7 @@ AcpiAhGetTableInfo (
const AH_TABLE *Info;
- for (Info = Gbl_AcpiSupportedTables; Info->Signature; Info++)
+ for (Info = AcpiGbl_SupportedTables; Info->Signature; Info++)
{
if (ACPI_COMPARE_NAME (Signature, Info->Signature))
{
@@ -197,7 +197,7 @@ AcpiAhGetTableInfo (
* Note: Any tables added here should be duplicated within AcpiDmTableData
* in the file common/dmtable.c
*/
-const AH_TABLE Gbl_AcpiSupportedTables[] =
+const AH_TABLE AcpiGbl_SupportedTables[] =
{
{ACPI_SIG_ASF, "Alert Standard Format table"},
{ACPI_SIG_BERT, "Boot Error Record Table"},