| .. | .. |
|---|
| 3 | 3 | * |
|---|
| 4 | 4 | * Module Name: psobject - Support for parse objects |
|---|
| 5 | 5 | * |
|---|
| 6 | | - * Copyright (C) 2000 - 2018, Intel Corp. |
|---|
| 6 | + * Copyright (C) 2000 - 2020, Intel Corp. |
|---|
| 7 | 7 | * |
|---|
| 8 | 8 | *****************************************************************************/ |
|---|
| 9 | 9 | |
|---|
| .. | .. |
|---|
| 481 | 481 | walk_state->opcode = (*op)->common.aml_opcode; |
|---|
| 482 | 482 | |
|---|
| 483 | 483 | status = walk_state->ascending_callback(walk_state); |
|---|
| 484 | | - status = |
|---|
| 485 | | - acpi_ps_next_parse_state(walk_state, *op, status); |
|---|
| 484 | + (void)acpi_ps_next_parse_state(walk_state, *op, status); |
|---|
| 486 | 485 | |
|---|
| 487 | 486 | status2 = acpi_ps_complete_this_op(walk_state, *op); |
|---|
| 488 | 487 | if (ACPI_FAILURE(status2)) { |
|---|
| .. | .. |
|---|
| 490 | 489 | } |
|---|
| 491 | 490 | } |
|---|
| 492 | 491 | |
|---|
| 493 | | - status = AE_OK; |
|---|
| 494 | 492 | break; |
|---|
| 495 | 493 | |
|---|
| 496 | 494 | case AE_CTRL_BREAK: |
|---|
| .. | .. |
|---|
| 512 | 510 | walk_state->opcode = (*op)->common.aml_opcode; |
|---|
| 513 | 511 | |
|---|
| 514 | 512 | status = walk_state->ascending_callback(walk_state); |
|---|
| 515 | | - status = acpi_ps_next_parse_state(walk_state, *op, status); |
|---|
| 513 | + (void)acpi_ps_next_parse_state(walk_state, *op, status); |
|---|
| 516 | 514 | |
|---|
| 517 | 515 | status2 = acpi_ps_complete_this_op(walk_state, *op); |
|---|
| 518 | 516 | if (ACPI_FAILURE(status2)) { |
|---|
| 519 | 517 | return_ACPI_STATUS(status2); |
|---|
| 520 | 518 | } |
|---|
| 521 | 519 | |
|---|
| 522 | | - status = AE_OK; |
|---|
| 523 | 520 | break; |
|---|
| 524 | 521 | |
|---|
| 525 | 522 | case AE_CTRL_TERMINATE: |
|---|
| .. | .. |
|---|
| 600 | 597 | * because there could be correct AML beyond the parts that caused |
|---|
| 601 | 598 | * the runtime error. |
|---|
| 602 | 599 | */ |
|---|
| 603 | | - ACPI_ERROR((AE_INFO, |
|---|
| 604 | | - "Ignore error and continue table load")); |
|---|
| 600 | + ACPI_INFO(("Ignoring error and continuing table load")); |
|---|
| 605 | 601 | return_ACPI_STATUS(AE_OK); |
|---|
| 606 | 602 | } |
|---|
| 607 | 603 | return_ACPI_STATUS(status); |
|---|