Deleted Added
full compact
dsinit.c (193529) dsinit.c (199337)
1/******************************************************************************
2 *
3 * Module Name: dsinit - Object initialization namespace walk
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

278 return_ACPI_STATUS (Status);
279 }
280
281 /*
282 * We don't use AcpiWalkNamespace since we do not want to acquire
283 * the namespace reader lock.
284 */
285 Status = AcpiNsWalkNamespace (ACPI_TYPE_ANY, StartNode, ACPI_UINT32_MAX,
1/******************************************************************************
2 *
3 * Module Name: dsinit - Object initialization namespace walk
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

278 return_ACPI_STATUS (Status);
279 }
280
281 /*
282 * We don't use AcpiWalkNamespace since we do not want to acquire
283 * the namespace reader lock.
284 */
285 Status = AcpiNsWalkNamespace (ACPI_TYPE_ANY, StartNode, ACPI_UINT32_MAX,
286 ACPI_NS_WALK_UNLOCK, AcpiDsInitOneObject, &Info, NULL);
286 ACPI_NS_WALK_UNLOCK, AcpiDsInitOneObject, NULL, &Info, NULL);
287 if (ACPI_FAILURE (Status))
288 {
289 ACPI_EXCEPTION ((AE_INFO, Status, "During WalkNamespace"));
290 }
291 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
292
293 Status = AcpiGetTableByIndex (TableIndex, &Table);
294 if (ACPI_FAILURE (Status))

--- 16 unchanged lines hidden ---
287 if (ACPI_FAILURE (Status))
288 {
289 ACPI_EXCEPTION ((AE_INFO, Status, "During WalkNamespace"));
290 }
291 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
292
293 Status = AcpiGetTableByIndex (TableIndex, &Table);
294 if (ACPI_FAILURE (Status))

--- 16 unchanged lines hidden ---