ACPICA: Rename a global for clarity, no functional change
authorBob Moore <robert.moore@intel.com>
Wed, 14 Mar 2018 23:13:06 +0000 (16:13 -0700)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Sun, 18 Mar 2018 17:52:00 +0000 (18:52 +0100)
Was acpi_gbl_parse_table_as_term_list, changed to:
acpi_gbl_execute_tables_as_methods.

Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/acpica/evrgnini.c
drivers/acpi/acpica/nsload.c
drivers/acpi/acpica/nsparse.c
drivers/acpi/acpica/tbdata.c
drivers/acpi/acpica/tbxfload.c
drivers/acpi/acpica/utxfinit.c
drivers/acpi/bus.c
include/acpi/acpixf.h

index 4187f56..ade127f 100644 (file)
@@ -562,7 +562,7 @@ acpi_status acpi_ev_initialize_region(union acpi_operand_object *region_obj)
                                 *
                                 * See acpi_ns_exec_module_code
                                 */
-                               if (!acpi_gbl_parse_table_as_term_list &&
+                               if (!acpi_gbl_execute_tables_as_methods &&
                                    obj_desc->method.
                                    info_flags & ACPI_METHOD_MODULE_LEVEL) {
                                        handler_obj =
index fdfe930..d3440af 100644 (file)
@@ -157,7 +157,7 @@ unlock:
         * other ACPI implementations. Optionally, the execution can be deferred
         * until later, see acpi_initialize_objects.
         */
-       if (!acpi_gbl_parse_table_as_term_list
+       if (!acpi_gbl_execute_tables_as_methods
            && !acpi_gbl_group_module_level_code) {
                acpi_ns_exec_module_code_list();
        }
index acb1aed..0036cec 100644 (file)
@@ -266,7 +266,7 @@ acpi_ns_parse_table(u32 table_index, struct acpi_namespace_node *start_node)
 
        ACPI_FUNCTION_TRACE(ns_parse_table);
 
-       if (acpi_gbl_parse_table_as_term_list) {
+       if (acpi_gbl_execute_tables_as_methods) {
                ACPI_DEBUG_PRINT_RAW((ACPI_DB_PARSE,
                                      "%s: **** Start table execution pass\n",
                                      ACPI_GET_FUNCTION_NAME));
index ec69267..5b59d41 100644 (file)
@@ -968,7 +968,7 @@ acpi_tb_load_table(u32 table_index, struct acpi_namespace_node *parent_node)
 
        /* Execute any module-level code that was found in the table */
 
-       if (!acpi_gbl_parse_table_as_term_list
+       if (!acpi_gbl_execute_tables_as_methods
            && acpi_gbl_group_module_level_code) {
                acpi_ns_exec_module_code_list();
        }
index e09b4b2..e49999e 100644 (file)
@@ -103,7 +103,7 @@ acpi_status ACPI_INIT_FUNCTION acpi_load_tables(void)
                                "While loading namespace from ACPI tables"));
        }
 
-       if (acpi_gbl_parse_table_as_term_list
+       if (acpi_gbl_execute_tables_as_methods
            || !acpi_gbl_group_module_level_code) {
                /*
                 * Initialize the objects that remain uninitialized. This
index e727db5..0e62a91 100644 (file)
@@ -265,7 +265,7 @@ acpi_status ACPI_INIT_FUNCTION acpi_initialize_objects(u32 flags)
         * all of the tables have been loaded. It is a legacy option and is
         * not compatible with other ACPI implementations. See acpi_ns_load_table.
         */
-       if (!acpi_gbl_parse_table_as_term_list
+       if (!acpi_gbl_execute_tables_as_methods
            && acpi_gbl_group_module_level_code) {
                acpi_ns_exec_module_code_list();
 
index 0dad0bd..84b4a62 100644 (file)
@@ -68,7 +68,7 @@ static int set_copy_dsdt(const struct dmi_system_id *id)
 #endif
 static int set_gbl_term_list(const struct dmi_system_id *id)
 {
-       acpi_gbl_parse_table_as_term_list = 1;
+       acpi_gbl_execute_tables_as_methods = 1;
        return 0;
 }
 
@@ -1077,7 +1077,7 @@ void __init acpi_early_init(void)
                goto error0;
        }
 
-       if (!acpi_gbl_parse_table_as_term_list &&
+       if (!acpi_gbl_execute_tables_as_methods &&
            acpi_gbl_group_module_level_code) {
                status = acpi_load_tables();
                if (ACPI_FAILURE(status)) {
@@ -1167,7 +1167,7 @@ static int __init acpi_bus_init(void)
        status = acpi_ec_ecdt_probe();
        /* Ignore result. Not having an ECDT is not fatal. */
 
-       if (acpi_gbl_parse_table_as_term_list ||
+       if (acpi_gbl_execute_tables_as_methods ||
            !acpi_gbl_group_module_level_code) {
                status = acpi_load_tables();
                if (ACPI_FAILURE(status)) {
index b8d42c5..2b53a57 100644 (file)
@@ -198,13 +198,12 @@ ACPI_INIT_GLOBAL(u8, acpi_gbl_do_not_use_xsdt, FALSE);
 ACPI_INIT_GLOBAL(u8, acpi_gbl_group_module_level_code, FALSE);
 
 /*
- * Optionally support module level code by parsing the entire table as
- * a term_list. Default is FALSE, do not execute entire table until some
- * lock order issues are fixed.
+ * Optionally support module level code by parsing an entire table as
+ * a method as it is loaded. Default is TRUE.
  * NOTE, this is essentially obsolete and will be removed soon
  * (01/2018).
  */
-ACPI_INIT_GLOBAL(u8, acpi_gbl_parse_table_as_term_list, TRUE);
+ACPI_INIT_GLOBAL(u8, acpi_gbl_execute_tables_as_methods, TRUE);
 
 /*
  * Optionally use 32-bit FADT addresses if and when there is a conflict