MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / DTSkipTree

Function DTSkipTree

Library/DeviceTreeLib/DeviceTreeLib.c:74–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72}
73
74STATIC
75DTEntry
76DTSkipTree (
77 IN DTEntry Root
78 )
79{
80 DTEntry Entry;
81 UINT32 Count;
82
83 Entry = DTSkipProperties (Root);
84
85 if (Entry == NULL) {
86 return NULL;
87 }
88
89 for (Count = 0; Count < Root->NumChildren; ++Count) {
90 Entry = DTSkipTree (Entry);
91 }
92 return Entry;
93}
94
95STATIC
96DTEntry

Callers 1

GetNextChildFunction · 0.85

Calls 1

DTSkipPropertiesFunction · 0.85

Tested by

no test coverage detected