diff options
Diffstat (limited to 'drivers/acpi/parser/psloop.c')
-rw-r--r-- | drivers/acpi/parser/psloop.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/drivers/acpi/parser/psloop.c b/drivers/acpi/parser/psloop.c index decb2e9a049d..095672a1a722 100644 --- a/drivers/acpi/parser/psloop.c +++ b/drivers/acpi/parser/psloop.c | |||
@@ -407,9 +407,14 @@ acpi_ps_parse_loop ( | |||
407 | INCREMENT_ARG_LIST (walk_state->arg_types); | 407 | INCREMENT_ARG_LIST (walk_state->arg_types); |
408 | } | 408 | } |
409 | 409 | ||
410 | |||
410 | /* Special processing for certain opcodes */ | 411 | /* Special processing for certain opcodes */ |
411 | 412 | ||
412 | if ((walk_state->pass_number <= ACPI_IMODE_LOAD_PASS1) && | 413 | /* TBD (remove): Temporary mechanism to disable this code if needed */ |
414 | |||
415 | #ifndef ACPI_NO_MODULE_LEVEL_CODE | ||
416 | |||
417 | if ((walk_state->pass_number <= ACPI_IMODE_LOAD_PASS1) && | ||
413 | ((walk_state->parse_flags & ACPI_PARSE_DISASSEMBLE) == 0)) { | 418 | ((walk_state->parse_flags & ACPI_PARSE_DISASSEMBLE) == 0)) { |
414 | /* | 419 | /* |
415 | * We want to skip If/Else/While constructs during Pass1 | 420 | * We want to skip If/Else/While constructs during Pass1 |
@@ -434,7 +439,7 @@ acpi_ps_parse_loop ( | |||
434 | break; | 439 | break; |
435 | } | 440 | } |
436 | } | 441 | } |
437 | 442 | #endif | |
438 | switch (op->common.aml_opcode) { | 443 | switch (op->common.aml_opcode) { |
439 | case AML_METHOD_OP: | 444 | case AML_METHOD_OP: |
440 | 445 | ||