| .. | .. |
|---|
| 3 | 3 | * |
|---|
| 4 | 4 | * Module Name: nsload - namespace loading/expanding/contracting procedures |
|---|
| 5 | 5 | * |
|---|
| 6 | | - * Copyright (C) 2000 - 2018, Intel Corp. |
|---|
| 6 | + * Copyright (C) 2000 - 2020, Intel Corp. |
|---|
| 7 | 7 | * |
|---|
| 8 | 8 | *****************************************************************************/ |
|---|
| 9 | 9 | |
|---|
| .. | .. |
|---|
| 24 | 24 | static acpi_status acpi_ns_delete_subtree(acpi_handle start_handle); |
|---|
| 25 | 25 | #endif |
|---|
| 26 | 26 | |
|---|
| 27 | | -#ifndef ACPI_NO_METHOD_EXECUTION |
|---|
| 28 | 27 | /******************************************************************************* |
|---|
| 29 | 28 | * |
|---|
| 30 | 29 | * FUNCTION: acpi_ns_load_table |
|---|
| .. | .. |
|---|
| 76 | 75 | /* |
|---|
| 77 | 76 | * On error, delete any namespace objects created by this table. |
|---|
| 78 | 77 | * We cannot initialize these objects, so delete them. There are |
|---|
| 79 | | - * a couple of expecially bad cases: |
|---|
| 78 | + * a couple of especially bad cases: |
|---|
| 80 | 79 | * AE_ALREADY_EXISTS - namespace collision. |
|---|
| 81 | 80 | * AE_NOT_FOUND - the target of a Scope operator does not |
|---|
| 82 | 81 | * exist. This target of Scope must already exist in the |
|---|
| .. | .. |
|---|
| 110 | 109 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
|---|
| 111 | 110 | "**** Completed Table Object Initialization\n")); |
|---|
| 112 | 111 | |
|---|
| 113 | | - /* |
|---|
| 114 | | - * This case handles the legacy option that groups all module-level |
|---|
| 115 | | - * code blocks together and defers execution until all of the tables |
|---|
| 116 | | - * are loaded. Execute all of these blocks at this time. |
|---|
| 117 | | - * Execute any module-level code that was detected during the table |
|---|
| 118 | | - * load phase. |
|---|
| 119 | | - * |
|---|
| 120 | | - * Note: this option is deprecated and will be eliminated in the |
|---|
| 121 | | - * future. Use of this option can cause problems with AML code that |
|---|
| 122 | | - * depends upon in-order immediate execution of module-level code. |
|---|
| 123 | | - */ |
|---|
| 124 | | - acpi_ns_exec_module_code_list(); |
|---|
| 125 | 112 | return_ACPI_STATUS(status); |
|---|
| 126 | 113 | } |
|---|
| 127 | 114 | |
|---|
| .. | .. |
|---|
| 296 | 283 | status = acpi_ns_delete_subtree(handle); |
|---|
| 297 | 284 | return_ACPI_STATUS(status); |
|---|
| 298 | 285 | } |
|---|
| 299 | | -#endif |
|---|
| 300 | 286 | #endif |
|---|