Deleted Added
full compact
evrgnini.c (197104) evrgnini.c (200553)
1/******************************************************************************
2 *
3 * Module Name: evrgnini- ACPI AddressSpace (OpRegion) init
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

711 HandlerObj = ObjDesc->Processor.Handler;
712 break;
713
714 case ACPI_TYPE_THERMAL:
715
716 HandlerObj = ObjDesc->ThermalZone.Handler;
717 break;
718
1/******************************************************************************
2 *
3 * Module Name: evrgnini- ACPI AddressSpace (OpRegion) init
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

711 HandlerObj = ObjDesc->Processor.Handler;
712 break;
713
714 case ACPI_TYPE_THERMAL:
715
716 HandlerObj = ObjDesc->ThermalZone.Handler;
717 break;
718
719 case ACPI_TYPE_METHOD:
720 /*
721 * If we are executing module level code, the original
722 * Node's object was replaced by this Method object and we
723 * saved the handler in the method object.
724 *
725 * See AcpiNsExecModuleCode
726 */
727 if (ObjDesc->Method.Flags & AOPOBJ_MODULE_LEVEL)
728 {
729 HandlerObj = ObjDesc->Method.Extra.Handler;
730 }
731 break;
732
719 default:
720 /* Ignore other objects */
721 break;
722 }
723
724 while (HandlerObj)
725 {
726 /* Is this handler of the correct type? */

--- 59 unchanged lines hidden ---
733 default:
734 /* Ignore other objects */
735 break;
736 }
737
738 while (HandlerObj)
739 {
740 /* Is this handler of the correct type? */

--- 59 unchanged lines hidden ---