diff options
Diffstat (limited to 'source/tools/acpiexec/aemain.c')
-rw-r--r-- | source/tools/acpiexec/aemain.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source/tools/acpiexec/aemain.c b/source/tools/acpiexec/aemain.c index 64e621d242a3e..32f5ecd5add34 100644 --- a/source/tools/acpiexec/aemain.c +++ b/source/tools/acpiexec/aemain.c @@ -250,6 +250,7 @@ usage ( ACPI_OPTION ("-da", "Disable method abort on error"); ACPI_OPTION ("-di", "Disable execution of STA/INI methods during init"); ACPI_OPTION ("-do", "Disable Operation Region address simulation"); + ACPI_OPTION ("-dp", "Disable TermList parsing for scope objects"); ACPI_OPTION ("-dr", "Disable repair of method return values"); ACPI_OPTION ("-ds", "Disable method auto-serialization"); ACPI_OPTION ("-dt", "Disable allocation tracking (performance)"); @@ -259,8 +260,7 @@ usage ( ACPI_OPTION ("-ef", "Enable display of final memory statistics"); ACPI_OPTION ("-ei", "Enable additional tests for ACPICA interfaces"); ACPI_OPTION ("-el", "Enable loading of additional test tables"); - ACPI_OPTION ("-em", "Enable grouping of module-level code"); - ACPI_OPTION ("-ep", "Enable TermList parsing for scope objects"); + ACPI_OPTION ("-em", "Enable (legacy) grouping of module-level code"); ACPI_OPTION ("-es", "Enable Interpreter Slack Mode"); ACPI_OPTION ("-et", "Enable debug semaphore timeout"); printf ("\n"); @@ -340,6 +340,11 @@ AeDoOptions ( AcpiGbl_DbOpt_NoRegionSupport = TRUE; break; + case 'p': + + AcpiGbl_ParseTableAsTermList = FALSE; + break; + case 'r': AcpiGbl_DisableAutoRepair = TRUE; @@ -395,11 +400,6 @@ AeDoOptions ( AcpiGbl_GroupModuleLevelCode = TRUE; break; - case 'p': - - AcpiGbl_ParseTableAsTermList = TRUE; - break; - case 's': AcpiGbl_EnableInterpreterSlack = TRUE; |