mirror of
https://github.com/acpica/acpica/
synced 2025-01-17 14:59:56 +03:00
date 2000.07.20.17.31.00; author mwalz; state Exp;
This commit is contained in:
parent
47c1f15d32
commit
7b846df43b
@ -224,13 +224,13 @@ AcpiNsDumpOneObject (
|
||||
|
||||
if (!(AcpiDbgLevel & Info->DebugLevel))
|
||||
{
|
||||
return AE_OK;
|
||||
return (AE_OK);
|
||||
}
|
||||
|
||||
if (!ObjHandle)
|
||||
{
|
||||
DEBUG_PRINT (ACPI_INFO, ("Null object handle\n"));
|
||||
return AE_OK;
|
||||
return (AE_OK);
|
||||
}
|
||||
|
||||
/* Check if the owner matches */
|
||||
@ -238,7 +238,7 @@ AcpiNsDumpOneObject (
|
||||
if ((Info->OwnerId != ACPI_UINT32_MAX) &&
|
||||
(Info->OwnerId != ThisEntry->OwnerId))
|
||||
{
|
||||
return AE_OK;
|
||||
return (AE_OK);
|
||||
}
|
||||
|
||||
|
||||
@ -321,7 +321,7 @@ AcpiNsDumpOneObject (
|
||||
/* No attached object, we are done */
|
||||
|
||||
DEBUG_PRINT_RAW (TRACE_TABLES, ("\n"));
|
||||
return AE_OK;
|
||||
return (AE_OK);
|
||||
}
|
||||
|
||||
switch (Type)
|
||||
@ -371,7 +371,7 @@ AcpiNsDumpOneObject (
|
||||
|
||||
if (!(AcpiDbgLevel & TRACE_VALUES))
|
||||
{
|
||||
return AE_OK;
|
||||
return (AE_OK);
|
||||
}
|
||||
|
||||
|
||||
@ -483,7 +483,7 @@ AcpiNsDumpOneObject (
|
||||
|
||||
Cleanup:
|
||||
DEBUG_PRINT_RAW (TRACE_TABLES, ("\n"));
|
||||
return AE_OK;
|
||||
return (AE_OK);
|
||||
}
|
||||
|
||||
|
||||
@ -561,7 +561,7 @@ AcpiNsDumpOneDevice (
|
||||
|
||||
}
|
||||
|
||||
return Status;
|
||||
return (Status);
|
||||
}
|
||||
|
||||
|
||||
|
@ -484,6 +484,8 @@ UnlockAndExit:
|
||||
* **Params - List of parameters to pass to the method,
|
||||
* terminated by NULL. Params itself may be
|
||||
* NULL if no parameters are being passed.
|
||||
* **ReturnObjDesc - List of result objects to be returned
|
||||
* from the method.
|
||||
*
|
||||
* RETURN: Status
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user