Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePciLibCf8/PciLib.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/BasePciLibCf8/PciLib.c
r48674 r58459 3 3 PCI Configuration cycles. Layers on top of one PCI CF8 Library instance. 4 4 5 Copyright (c) 2006 - 201 0, Intel Corporation. All rights reserved.<BR>5 Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR> 6 6 This program and the accompanying materials 7 7 are licensed and made available under the terms and conditions of the BSD License … … 237 237 If EndBit is greater than 7, then ASSERT(). 238 238 If EndBit is less than StartBit, then ASSERT(). 239 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 239 240 240 241 @param Address The PCI configuration register to write. … … 275 276 If EndBit is greater than 7, then ASSERT(). 276 277 If EndBit is less than StartBit, then ASSERT(). 278 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 277 279 278 280 @param Address The PCI configuration register to write. … … 313 315 If EndBit is greater than 7, then ASSERT(). 314 316 If EndBit is less than StartBit, then ASSERT(). 317 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 315 318 316 319 @param Address The PCI configuration register to write. … … 353 356 If EndBit is greater than 7, then ASSERT(). 354 357 If EndBit is less than StartBit, then ASSERT(). 358 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 359 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 355 360 356 361 @param Address The PCI configuration register to write. … … 572 577 If EndBit is greater than 15, then ASSERT(). 573 578 If EndBit is less than StartBit, then ASSERT(). 579 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 574 580 575 581 @param Address The PCI configuration register to write. … … 611 617 If EndBit is greater than 15, then ASSERT(). 612 618 If EndBit is less than StartBit, then ASSERT(). 619 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 613 620 614 621 @param Address The PCI configuration register to write. … … 650 657 If EndBit is greater than 15, then ASSERT(). 651 658 If EndBit is less than StartBit, then ASSERT(). 659 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 652 660 653 661 @param Address The PCI configuration register to write. … … 691 699 If EndBit is greater than 15, then ASSERT(). 692 700 If EndBit is less than StartBit, then ASSERT(). 701 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 702 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 693 703 694 704 @param Address The PCI configuration register to write. … … 910 920 If EndBit is greater than 31, then ASSERT(). 911 921 If EndBit is less than StartBit, then ASSERT(). 922 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 912 923 913 924 @param Address The PCI configuration register to write. … … 949 960 If EndBit is greater than 31, then ASSERT(). 950 961 If EndBit is less than StartBit, then ASSERT(). 962 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 951 963 952 964 @param Address The PCI configuration register to write. … … 988 1000 If EndBit is greater than 31, then ASSERT(). 989 1001 If EndBit is less than StartBit, then ASSERT(). 1002 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 990 1003 991 1004 @param Address The PCI configuration register to write. … … 1029 1042 If EndBit is greater than 31, then ASSERT(). 1030 1043 If EndBit is less than StartBit, then ASSERT(). 1044 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1045 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1031 1046 1032 1047 @param Address The PCI configuration register to write.
Note:
See TracChangeset
for help on using the changeset viewer.