Changeset 108794 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/DynamicTablesPkg/Library/FdtHwInfoParserLib/FdtUtility.h
- Timestamp:
- Mar 31, 2025 11:31:09 AM (2 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168237
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-164365 /vendor/edk2/current 103735-103757,103769-103776,129194-168232
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/DynamicTablesPkg/Library/FdtHwInfoParserLib/FdtUtility.h
r99404 r108794 456 456 ); 457 457 458 /** For relevant architectures, get the "#address-cells" and/or "#size-cells" 459 property of the node. 460 461 According to the Device Tree specification, s2.3.5 "#address-cells and 462 #size-cells": 463 "If missing, a client program should assume a default value of 2 for 464 #address-cells, and a value of 1 for #size-cells." 465 466 @param [in] Fdt Pointer to a Flattened Device Tree. 467 @param [in] Node Offset of the node having to get the 468 "#address-cells" and "#size-cells" 469 properties from. 470 @param [out] AddressCells If success, number of address-cells. 471 If the property is not available, 472 default value is 2. 473 @param [out] SizeCells If success, number of size-cells. 474 If the property is not available, 475 default value is 1. 476 477 @retval EFI_INVALID_PARAMETER Invalid parameter. 478 **/ 479 EFI_STATUS 480 EFIAPI 481 FdtGetIntcAddressCells ( 482 IN CONST VOID *Fdt, 483 IN INT32 Node, 484 OUT INT32 *AddressCells, OPTIONAL 485 OUT INT32 *SizeCells OPTIONAL 486 ); 487 458 488 #endif // FDT_UTILITY_H_
Note:
See TracChangeset
for help on using the changeset viewer.