mirror of
https://github.com/acpica/acpica/
synced 2025-02-25 01:44:33 +03:00
Pass thru MAX_DEPTH parameter in dump routines
date 99.05.17.22.20.00; author rmoore1; state Exp;
This commit is contained in:
parent
eb41134c5a
commit
3d957dff6a
@ -324,6 +324,8 @@ NsDumpOneObject (NsHandle ObjHandle, UINT32 Level, void *Context)
|
||||
* FUNCTION: NsDumpObjects
|
||||
*
|
||||
* PARAMETERS: Type - Object type to be dumped
|
||||
* MaxDepth - Maximum depth of dump. Use INT_MAX
|
||||
* for an effectively unlimited depth.
|
||||
* StartHandle - Where in namespace to start/end search
|
||||
*
|
||||
* DESCRIPTION: Dump typed objects
|
||||
@ -332,9 +334,9 @@ NsDumpOneObject (NsHandle ObjHandle, UINT32 Level, void *Context)
|
||||
***************************************************************************/
|
||||
|
||||
void
|
||||
NsDumpObjects (NsType Type, NsHandle StartHandle)
|
||||
NsDumpObjects (NsType Type, INT32 MaxDepth, NsHandle StartHandle)
|
||||
{
|
||||
NsWalkNamespace (Type, StartHandle, INT_MAX, NsDumpOneObject, NULL);
|
||||
NsWalkNamespace (Type, StartHandle, MaxDepth, NsDumpOneObject, NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -364,7 +366,7 @@ NsDumpRootDevices (void)
|
||||
AcpiNameToHandle (0, NS_SYSTEM_BUS, &SysBusHandle);
|
||||
|
||||
DEBUG_PRINT (TRACE_TABLES, ("All devices in the namespace:\n"));
|
||||
NsDumpObjects (TYPE_Device, SysBusHandle);
|
||||
NsDumpObjects (TYPE_Device, INT_MAX, SysBusHandle);
|
||||
|
||||
}
|
||||
|
||||
@ -410,7 +412,7 @@ NsDumpTables (NsHandle SearchBase, INT32 MaxDepth)
|
||||
}
|
||||
|
||||
|
||||
NsDumpObjects (TYPE_Any, SearchHandle);
|
||||
NsDumpObjects (TYPE_Any, MaxDepth, SearchHandle);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user