Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiPciSegmentLibPciCfg2/PciSegmentLib.c
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiPciSegmentLibPciCfg2/PciSegmentLib.c
r48674 r58459 2 2 PCI Segment Library implementation using PCI CFG2 PPI. 3 3 4 Copyright (c) 2007 - 20 09, Intel Corporation. All rights reserved.<BR>4 Copyright (c) 2007 - 2012, Intel Corporation. All rights reserved.<BR> 5 5 This program and the accompanying materials are 6 6 licensed and made available under the terms and conditions of … … 370 370 If EndBit is greater than 7, then ASSERT(). 371 371 If EndBit is less than StartBit, then ASSERT(). 372 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 372 373 373 374 @param Address The PCI configuration register to write. … … 411 412 If EndBit is greater than 7, then ASSERT(). 412 413 If EndBit is less than StartBit, then ASSERT(). 414 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 413 415 414 416 @param Address The PCI configuration register to write. … … 452 454 If EndBit is greater than 7, then ASSERT(). 453 455 If EndBit is less than StartBit, then ASSERT(). 456 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 454 457 455 458 @param Address The PCI configuration register to write. … … 495 498 If EndBit is greater than 7, then ASSERT(). 496 499 If EndBit is less than StartBit, then ASSERT(). 500 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 501 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 497 502 498 503 @param Address The PCI configuration register to write. … … 712 717 If EndBit is greater than 15, then ASSERT(). 713 718 If EndBit is less than StartBit, then ASSERT(). 719 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 714 720 715 721 @param Address The PCI configuration register to write. … … 748 754 If EndBit is greater than 15, then ASSERT(). 749 755 If EndBit is less than StartBit, then ASSERT(). 756 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 750 757 751 758 @param Address The PCI configuration register to write. … … 790 797 If EndBit is greater than 7, then ASSERT(). 791 798 If EndBit is less than StartBit, then ASSERT(). 799 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 792 800 793 801 @param Address The address that encodes the PCI Segment, Bus, Device, Function, and Register. … … 833 841 If EndBit is greater than 15, then ASSERT(). 834 842 If EndBit is less than StartBit, then ASSERT(). 843 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 844 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 835 845 836 846 @param Address The PCI configuration register to write. … … 1051 1061 If EndBit is greater than 31, then ASSERT(). 1052 1062 If EndBit is less than StartBit, then ASSERT(). 1063 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1053 1064 1054 1065 @param Address The PCI configuration register to write. … … 1092 1103 If EndBit is greater than 31, then ASSERT(). 1093 1104 If EndBit is less than StartBit, then ASSERT(). 1105 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1094 1106 1095 1107 @param Address The PCI configuration register to write. … … 1133 1145 If EndBit is greater than 31, then ASSERT(). 1134 1146 If EndBit is less than StartBit, then ASSERT(). 1135 1147 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1136 1148 1137 1149 @param Address The PCI configuration register to write. … … 1177 1189 If EndBit is greater than 31, then ASSERT(). 1178 1190 If EndBit is less than StartBit, then ASSERT(). 1191 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1192 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1179 1193 1180 1194 @param Address The PCI configuration register to write.
Note:
See TracChangeset
for help on using the changeset viewer.