| 538 | } |
| 539 | |
| 540 | VOID |
| 541 | DumpDeviceTree ( |
| 542 | VOID |
| 543 | ) |
| 544 | { |
| 545 | DTEntry DTRoot = NULL; |
| 546 | |
| 547 | if (!EFI_ERROR(DTLookupEntry (NULL, "/", &DTRoot))) { |
| 548 | DumpDeviceTreeNodeRecusively (DTRoot); |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | // DTInit |
| 553 | /// |
nothing calls this directly
no test coverage detected