Changeset 108794 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/MdePkg/Library/UefiPciSegmentLibPciRootBridgeIo/PciSegmentLib.c
- 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/MdePkg/Library/UefiPciSegmentLibPciRootBridgeIo/PciSegmentLib.c
r99404 r108794 185 185 186 186 PciRootBridgeIo = PciSegmentLibSearchForRootBridge (Address); 187 ASSERT (PciRootBridgeIo != NULL); 187 188 if (PciRootBridgeIo == NULL) { 189 ASSERT (PciRootBridgeIo != NULL); 190 return 0; 191 } 188 192 189 193 PciRootBridgeIo->Pci.Read ( … … 224 228 225 229 PciRootBridgeIo = PciSegmentLibSearchForRootBridge (Address); 226 ASSERT (PciRootBridgeIo != NULL); 230 231 if (PciRootBridgeIo == NULL) { 232 ASSERT (PciRootBridgeIo != NULL); 233 return 0; 234 } 227 235 228 236 PciRootBridgeIo->Pci.Write (
Note:
See TracChangeset
for help on using the changeset viewer.