Changeset 58466 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePciLibPciExpress
- Timestamp:
- Oct 29, 2015 4:30:44 AM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
- Property svn:mergeinfo changed
/vendor/edk2/current merged: 103769-103776
- Property svn:mergeinfo changed
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePciLibPciExpress/BasePciLibPciExpress.inf
r58459 r58466 24 24 MODULE_TYPE = BASE 25 25 VERSION_STRING = 1.0 26 LIBRARY_CLASS = PciLib 26 LIBRARY_CLASS = PciLib 27 27 28 28 -
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePciLibPciExpress/PciLib.c
r58459 r58466 21 21 22 22 /** 23 Registers a PCI device so PCI configuration registers may be accessed after 23 Registers a PCI device so PCI configuration registers may be accessed after 24 24 SetVirtualAddressMap(). 25 26 Registers the PCI device specified by Address so all the PCI configuration registers 25 26 Registers the PCI device specified by Address so all the PCI configuration registers 27 27 associated with that PCI device may be accessed after SetVirtualAddressMap() is called. 28 29 If Address > 0x0FFFFFFF, then ASSERT(). 30 31 @param Address The address that encodes the PCI Bus, Device, Function and 32 Register. 33 28 29 If Address > 0x0FFFFFFF, then ASSERT(). 30 31 @param Address The address that encodes the PCI Bus, Device, Function and 32 Register. 33 34 34 @retval RETURN_SUCCESS The PCI device was registered for runtime access. 35 @retval RETURN_UNSUPPORTED An attempt was made to call this function 35 @retval RETURN_UNSUPPORTED An attempt was made to call this function 36 36 after ExitBootServices(). 37 37 @retval RETURN_UNSUPPORTED The resources required to access the PCI device
Note:
See TracChangeset
for help on using the changeset viewer.