Deleted Added
full compact
exconfig.c (197104) exconfig.c (199337)
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
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 = AcpiUtCreateInternalObject (ACPI_TYPE_INTEGER);
266 DdbHandle = AcpiUtCreateIntegerObject ((UINT64) 0);
267 if (!DdbHandle)
268 {
269 return_ACPI_STATUS (AE_NO_MEMORY);
270 }
271
267 if (!DdbHandle)
268 {
269 return_ACPI_STATUS (AE_NO_MEMORY);
270 }
271
272 DdbHandle->Integer.Value = 0;
273 *ReturnDesc = DdbHandle;
272 *ReturnDesc = DdbHandle;
274
275 return_ACPI_STATUS (AE_OK);
276 }
277
278 /* Default nodes */
279
280 StartNode = WalkState->ScopeInfo->Scope.Node;
281 ParentNode = AcpiGbl_RootNode;
282

--- 471 unchanged lines hidden ---
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 ---