aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi/acpixf.h
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2016-10-17 15:03:57 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2016-10-20 19:33:40 -0400
commit066118ffe94bc38d405edaf4dbc039f00dec6e7b (patch)
tree3860950c4a026da2e29fdbbb8b8c909a13623d69 /include/acpi/acpixf.h
parenta335e95590acee89e75a21849d943f085c6269b5 (diff)
ACPICA: Move acpi_gbl_max_loop_iterations to the public globals file
ACPICA commit eb8b2194200867dec9ba38e5ab98b5b8ef262945 Moved to acpixf.h with the rest of the configuration globals. Link: https://github.com/acpica/acpica/commit/eb8b2194 Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/acpi/acpixf.h')
-rw-r--r--include/acpi/acpixf.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h
index c7b3a132dbe7..07ab21ea47c8 100644
--- a/include/acpi/acpixf.h
+++ b/include/acpi/acpixf.h
@@ -259,6 +259,13 @@ ACPI_INIT_GLOBAL(u8, acpi_gbl_osi_data, 0);
259ACPI_INIT_GLOBAL(u8, acpi_gbl_reduced_hardware, FALSE); 259ACPI_INIT_GLOBAL(u8, acpi_gbl_reduced_hardware, FALSE);
260 260
261/* 261/*
262 * Maximum number of While() loop iterations before forced method abort.
263 * This mechanism is intended to prevent infinite loops during interpreter
264 * execution within a host kernel.
265 */
266ACPI_INIT_GLOBAL(u32, acpi_gbl_max_loop_iterations, ACPI_MAX_LOOP_COUNT);
267
268/*
262 * This mechanism is used to trace a specified AML method. The method is 269 * This mechanism is used to trace a specified AML method. The method is
263 * traced each time it is executed. 270 * traced each time it is executed.
264 */ 271 */