Deleted Added
full compact
evgpeblk.c (197104) evgpeblk.c (199337)
1/******************************************************************************
2 *
3 * Module Name: evgpeblk - GPE block creation and initialization.
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

1105 ACPI_FREE (GpeBlock);
1106 return_ACPI_STATUS (Status);
1107 }
1108
1109 /* Find all GPE methods (_Lxx, _Exx) for this block */
1110
1111 Status = AcpiNsWalkNamespace (ACPI_TYPE_METHOD, GpeDevice,
1112 ACPI_UINT32_MAX, ACPI_NS_WALK_NO_UNLOCK,
1/******************************************************************************
2 *
3 * Module Name: evgpeblk - GPE block creation and initialization.
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

1105 ACPI_FREE (GpeBlock);
1106 return_ACPI_STATUS (Status);
1107 }
1108
1109 /* Find all GPE methods (_Lxx, _Exx) for this block */
1110
1111 Status = AcpiNsWalkNamespace (ACPI_TYPE_METHOD, GpeDevice,
1112 ACPI_UINT32_MAX, ACPI_NS_WALK_NO_UNLOCK,
1113 AcpiEvSaveMethodInfo, GpeBlock, NULL);
1113 AcpiEvSaveMethodInfo, NULL, GpeBlock, NULL);
1114
1115 /* Return the new block */
1116
1117 if (ReturnGpeBlock)
1118 {
1119 (*ReturnGpeBlock) = GpeBlock;
1120 }
1121

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

1187 * definition a wake GPE and will not be enabled while the machine
1188 * is running.
1189 */
1190 GpeInfo.GpeBlock = GpeBlock;
1191 GpeInfo.GpeDevice = GpeDevice;
1192
1193 Status = AcpiNsWalkNamespace (ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
1194 ACPI_UINT32_MAX, ACPI_NS_WALK_UNLOCK,
1114
1115 /* Return the new block */
1116
1117 if (ReturnGpeBlock)
1118 {
1119 (*ReturnGpeBlock) = GpeBlock;
1120 }
1121

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

1187 * definition a wake GPE and will not be enabled while the machine
1188 * is running.
1189 */
1190 GpeInfo.GpeBlock = GpeBlock;
1191 GpeInfo.GpeDevice = GpeDevice;
1192
1193 Status = AcpiNsWalkNamespace (ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
1194 ACPI_UINT32_MAX, ACPI_NS_WALK_UNLOCK,
1195 AcpiEvMatchPrwAndGpe, &GpeInfo, NULL);
1195 AcpiEvMatchPrwAndGpe, NULL, &GpeInfo, NULL);
1196 }
1197
1198 /*
1199 * Enable all GPEs in this block that have these attributes:
1200 * 1) are "runtime" or "run/wake" GPEs, and
1201 * 2) have a corresponding _Lxx or _Exx method
1202 *
1203 * Any other GPEs within this block must be enabled via the

--- 199 unchanged lines hidden ---
1196 }
1197
1198 /*
1199 * Enable all GPEs in this block that have these attributes:
1200 * 1) are "runtime" or "run/wake" GPEs, and
1201 * 2) have a corresponding _Lxx or _Exx method
1202 *
1203 * Any other GPEs within this block must be enabled via the

--- 199 unchanged lines hidden ---