Changeset 89983 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Bus/Pci/PciBusDxe/PciLib.h
- Timestamp:
- Jul 1, 2021 8:17:41 AM (4 years ago)
- 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-139864 /vendor/edk2/current 103735-103757,103769-103776,129194-145445
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/MdeModulePkg/Bus/Pci/PciBusDxe/PciLib.h
r80721 r89983 2 2 Internal library declaration for PCI Bus module. 3 3 4 Copyright (c) 2006 - 20 11, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.<BR> 5 5 SPDX-License-Identifier: BSD-2-Clause-Patent 6 6 … … 25 25 } EFI_RESOURCE_ALLOC_FAILURE_ERROR_DATA_PAYLOAD; 26 26 27 typedef enum { 28 PciResizableBarMin = 0x00, 29 PciResizableBarMax = 0xFF 30 } PCI_RESIZABLE_BAR_OPERATION; 27 31 28 32 /** … … 157 161 ); 158 162 163 /** 164 This function is used to program the Resizable BAR Register. 165 166 @param PciIoDevice A pointer to the PCI_IO_DEVICE. 167 @param ResizableBarOp PciResizableBarMax: Set BAR to max size 168 PciResizableBarMin: set BAR to min size. 169 170 @retval EFI_SUCCESS Successfully enumerated the host bridge. 171 @retval other Some error occurred when enumerating the host bridge. 172 173 **/ 174 EFI_STATUS 175 PciProgramResizableBar ( 176 IN PCI_IO_DEVICE *PciIoDevice, 177 IN PCI_RESIZABLE_BAR_OPERATION ResizableBarOp 178 ); 159 179 #endif
Note:
See TracChangeset
for help on using the changeset viewer.