Deleted Added
sdiff udiff text old ( 197104 ) new ( 199337 )
full compact
1/******************************************************************************
2 *
3 * Module Name: exconfig - Namespace reconfiguration (Load/Unload opcodes)
4 *
5 *****************************************************************************/
6
7/******************************************************************************
8 *

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

258 {
259 if (Status != AE_NOT_FOUND)
260 {
261 return_ACPI_STATUS (Status);
262 }
263
264 /* Table not found, return an Integer=0 and AE_OK */
265
266 DdbHandle = AcpiUtCreateIntegerObject ((UINT64) 0);
267 if (!DdbHandle)
268 {
269 return_ACPI_STATUS (AE_NO_MEMORY);
270 }
271
272 *ReturnDesc = DdbHandle;
273 return_ACPI_STATUS (AE_OK);
274 }
275
276 /* Default nodes */
277
278 StartNode = WalkState->ScopeInfo->Scope.Node;
279 ParentNode = AcpiGbl_RootNode;
280

--- 471 unchanged lines hidden ---