Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePciExpressLib/PciExpressLib.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/BasePciExpressLib/PciExpressLib.c
r48674 r58459 6 6 Library. 7 7 8 Copyright (c) 2006 - 201 0, Intel Corporation. All rights reserved.<BR>8 Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR> 9 9 This program and the accompanying materials 10 10 are licensed and made available under the terms and conditions of the BSD License … … 287 287 If EndBit is greater than 7, then ASSERT(). 288 288 If EndBit is less than StartBit, then ASSERT(). 289 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 289 290 290 291 @param Address The PCI configuration register to write. … … 331 332 If EndBit is greater than 7, then ASSERT(). 332 333 If EndBit is less than StartBit, then ASSERT(). 334 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 333 335 334 336 @param Address The PCI configuration register to write. … … 375 377 If EndBit is greater than 7, then ASSERT(). 376 378 If EndBit is less than StartBit, then ASSERT(). 379 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 377 380 378 381 @param Address The PCI configuration register to write. … … 421 424 If EndBit is greater than 7, then ASSERT(). 422 425 If EndBit is less than StartBit, then ASSERT(). 426 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 427 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 423 428 424 429 @param Address The PCI configuration register to write. … … 661 666 If EndBit is greater than 15, then ASSERT(). 662 667 If EndBit is less than StartBit, then ASSERT(). 668 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 663 669 664 670 @param Address The PCI configuration register to write. … … 706 712 If EndBit is greater than 15, then ASSERT(). 707 713 If EndBit is less than StartBit, then ASSERT(). 714 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 708 715 709 716 @param Address The PCI configuration register to write. … … 751 758 If EndBit is greater than 15, then ASSERT(). 752 759 If EndBit is less than StartBit, then ASSERT(). 760 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 753 761 754 762 @param Address The PCI configuration register to write. … … 798 806 If EndBit is greater than 15, then ASSERT(). 799 807 If EndBit is less than StartBit, then ASSERT(). 808 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 809 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 800 810 801 811 @param Address The PCI configuration register to write. … … 1038 1048 If EndBit is greater than 31, then ASSERT(). 1039 1049 If EndBit is less than StartBit, then ASSERT(). 1050 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1040 1051 1041 1052 @param Address The PCI configuration register to write. … … 1083 1094 If EndBit is greater than 31, then ASSERT(). 1084 1095 If EndBit is less than StartBit, then ASSERT(). 1096 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1085 1097 1086 1098 @param Address The PCI configuration register to write. … … 1128 1140 If EndBit is greater than 31, then ASSERT(). 1129 1141 If EndBit is less than StartBit, then ASSERT(). 1142 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1130 1143 1131 1144 @param Address The PCI configuration register to write. … … 1175 1188 If EndBit is greater than 31, then ASSERT(). 1176 1189 If EndBit is less than StartBit, then ASSERT(). 1190 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1191 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1177 1192 1178 1193 @param Address The PCI configuration register to write.
Note:
See TracChangeset
for help on using the changeset viewer.