diff options
Diffstat (limited to 'source/components/executer')
-rw-r--r-- | source/components/executer/exconfig.c | 4 | ||||
-rw-r--r-- | source/components/executer/exoparg3.c | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/source/components/executer/exconfig.c b/source/components/executer/exconfig.c index 60aea38c69640..7a78e3c2c6227 100644 --- a/source/components/executer/exconfig.c +++ b/source/components/executer/exconfig.c @@ -276,7 +276,7 @@ AcpiExLoadTableOp ( Status = AcpiGetTableByIndex (TableIndex, &Table); if (ACPI_SUCCESS (Status)) { - ACPI_INFO ((AE_INFO, "Dynamic OEM Table Load:")); + ACPI_INFO (("Dynamic OEM Table Load:")); AcpiTbPrintTableHeader (0, Table); } @@ -516,7 +516,7 @@ AcpiExLoadOp ( /* Install the new table into the local data structures */ - ACPI_INFO ((AE_INFO, "Dynamic OEM Table Load:")); + ACPI_INFO (("Dynamic OEM Table Load:")); (void) AcpiUtAcquireMutex (ACPI_MTX_TABLES); Status = AcpiTbInstallStandardTable (ACPI_PTR_TO_PHYSADDR (Table), diff --git a/source/components/executer/exoparg3.c b/source/components/executer/exoparg3.c index db9fd11f936a7..de46a97c9caca 100644 --- a/source/components/executer/exoparg3.c +++ b/source/components/executer/exoparg3.c @@ -134,8 +134,10 @@ AcpiExOpcode_3A_0T_0R ( * op is intended for use by disassemblers in order to properly * disassemble control method invocations. The opcode or group of * opcodes should be surrounded by an "if (0)" clause to ensure that - * AML interpreters never see the opcode. + * AML interpreters never see the opcode. Thus, something is + * wrong if an external opcode ever gets here. */ + ACPI_ERROR ((AE_INFO, "Executed External Op")); Status = AE_OK; goto Cleanup; |