| 51 | // |
| 52 | |
| 53 | STATIC |
| 54 | DTEntry |
| 55 | DTSkipProperties ( |
| 56 | IN DTEntry Entry |
| 57 | ) |
| 58 | { |
| 59 | DTProperty *Prop; |
| 60 | UINT32 Count; |
| 61 | |
| 62 | if (Entry == NULL || Entry->NumProperties == 0) { |
| 63 | return NULL; |
| 64 | } else { |
| 65 | Prop = (DTProperty *) (Entry + 1); |
| 66 | for (Count = 0; Count < Entry->NumProperties; ++Count) { |
| 67 | Prop = DEVICE_TREE_GET_NEXT_PROPERTY (Prop); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | return (DTEntry) Prop; |
| 72 | } |
| 73 | |
| 74 | STATIC |
| 75 | DTEntry |
no outgoing calls
no test coverage detected