Deleted Added
full compact
dsmethod.c (197104) dsmethod.c (200553)
1/******************************************************************************
2 *
3 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

--- 505 unchanged lines hidden (view full) ---

514 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
515 "**** Begin nested execution of [%4.4s] **** WalkState=%p\n",
516 MethodNode->Name.Ascii, NextWalkState));
517
518 /* Invoke an internal method if necessary */
519
520 if (ObjDesc->Method.MethodFlags & AML_METHOD_INTERNAL_ONLY)
521 {
1/******************************************************************************
2 *
3 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

--- 505 unchanged lines hidden (view full) ---

514 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
515 "**** Begin nested execution of [%4.4s] **** WalkState=%p\n",
516 MethodNode->Name.Ascii, NextWalkState));
517
518 /* Invoke an internal method if necessary */
519
520 if (ObjDesc->Method.MethodFlags & AML_METHOD_INTERNAL_ONLY)
521 {
522 Status = ObjDesc->Method.Implementation (NextWalkState);
522 Status = ObjDesc->Method.Extra.Implementation (NextWalkState);
523 if (Status == AE_OK)
524 {
525 Status = AE_CTRL_TERMINATE;
526 }
527 }
528
529 return_ACPI_STATUS (Status);
530

--- 232 unchanged lines hidden ---
523 if (Status == AE_OK)
524 {
525 Status = AE_CTRL_TERMINATE;
526 }
527 }
528
529 return_ACPI_STATUS (Status);
530

--- 232 unchanged lines hidden ---