Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseS3PciLib/S3PciLib.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/BaseS3PciLib/S3PciLib.c
r48674 r58459 4 4 maps directly on top of the PciLib class. 5 5 6 Copyright (c) 2006 , Intel Corporation. All rights reserved.<BR>6 Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR> 7 7 8 8 This program and the accompanying materials … … 278 278 If EndBit is greater than 7, then ASSERT(). 279 279 If EndBit is less than StartBit, then ASSERT(). 280 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 280 281 281 282 @param Address PCI configuration register to write. … … 317 318 If EndBit is greater than 7, then ASSERT(). 318 319 If EndBit is less than StartBit, then ASSERT(). 320 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 319 321 320 322 @param Address PCI configuration register to write. … … 356 358 If EndBit is greater than 7, then ASSERT(). 357 359 If EndBit is less than StartBit, then ASSERT(). 360 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 358 361 359 362 @param Address PCI configuration register to write. … … 396 399 If EndBit is greater than 7, then ASSERT(). 397 400 If EndBit is less than StartBit, then ASSERT(). 401 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 402 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 398 403 399 404 @param Address PCI configuration register to write. … … 646 651 If EndBit is greater than 15, then ASSERT(). 647 652 If EndBit is less than StartBit, then ASSERT(). 653 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 648 654 649 655 @param Address PCI configuration register to write. … … 686 692 If EndBit is greater than 15, then ASSERT(). 687 693 If EndBit is less than StartBit, then ASSERT(). 694 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 688 695 689 696 @param Address PCI configuration register to write. … … 726 733 If EndBit is greater than 15, then ASSERT(). 727 734 If EndBit is less than StartBit, then ASSERT(). 735 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 728 736 729 737 @param Address PCI configuration register to write. … … 767 775 If EndBit is greater than 15, then ASSERT(). 768 776 If EndBit is less than StartBit, then ASSERT(). 777 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 778 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 769 779 770 780 @param Address PCI configuration register to write. … … 1017 1027 If EndBit is greater than 31, then ASSERT(). 1018 1028 If EndBit is less than StartBit, then ASSERT(). 1029 If Value is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1019 1030 1020 1031 @param Address PCI configuration register to write. … … 1057 1068 If EndBit is greater than 31, then ASSERT(). 1058 1069 If EndBit is less than StartBit, then ASSERT(). 1070 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1059 1071 1060 1072 @param Address PCI configuration register to write. … … 1097 1109 If EndBit is greater than 31, then ASSERT(). 1098 1110 If EndBit is less than StartBit, then ASSERT(). 1111 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1099 1112 1100 1113 @param Address PCI configuration register to write. … … 1138 1151 If EndBit is greater than 31, then ASSERT(). 1139 1152 If EndBit is less than StartBit, then ASSERT(). 1153 If AndData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1154 If OrData is larger than the bitmask value range specified by StartBit and EndBit, then ASSERT(). 1140 1155 1141 1156 @param Address PCI configuration register to write.
Note:
See TracChangeset
for help on using the changeset viewer.