diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2018-11-01 02:09:52 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2018-11-01 02:09:52 +0000 |
commit | 4d4b15a0e8524e15826ac932bd05252dbd246422 (patch) | |
tree | 2733e92ee403325b88fed63fcb339890232290af /source/tools/acpiexec/aemain.c | |
parent | 98117aa0347721c1b33897e435818da3673040ca (diff) |
Notes
Diffstat (limited to 'source/tools/acpiexec/aemain.c')
-rw-r--r-- | source/tools/acpiexec/aemain.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/source/tools/acpiexec/aemain.c b/source/tools/acpiexec/aemain.c index b1781b565861a..e8ae348cdf9b4 100644 --- a/source/tools/acpiexec/aemain.c +++ b/source/tools/acpiexec/aemain.c @@ -255,7 +255,8 @@ usage ( ACPI_OPTION ("-df", "Disable Local fault handler"); 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 ("-dp", "Disable loading DSDT/SSDT as a control method\n" + " (enable legacy grouping of module-level code)"); ACPI_OPTION ("-dr", "Disable repair of method return values"); ACPI_OPTION ("-ds", "Disable method auto-serialization"); ACPI_OPTION ("-dt", "Disable allocation tracking (performance)"); @@ -265,7 +266,6 @@ 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 (legacy) grouping of module-level code"); ACPI_OPTION ("-es", "Enable Interpreter Slack Mode"); ACPI_OPTION ("-et", "Enable debug semaphore timeout"); printf ("\n"); @@ -319,7 +319,7 @@ AeDoOptions ( if (strlen (AcpiGbl_Optarg) > (AE_BUFFER_SIZE -1)) { - printf ("**** The length of command line (%u) exceeded maximum (%u)\n", + printf ("**** The length of command line (%u) exceeded maximum (%d)\n", (UINT32) strlen (AcpiGbl_Optarg), (AE_BUFFER_SIZE -1)); return (-1); } @@ -406,11 +406,6 @@ AeDoOptions ( AcpiGbl_LoadTestTables = TRUE; break; - case 'm': - - AcpiGbl_GroupModuleLevelCode = TRUE; - break; - case 's': AcpiGbl_EnableInterpreterSlack = TRUE; @@ -625,7 +620,6 @@ main ( /* Module-level code. Use new architecture */ AcpiGbl_ExecuteTablesAsMethods = TRUE; - AcpiGbl_GroupModuleLevelCode = FALSE; /* * Initialize ACPICA and start debugger thread. |