diff options
author | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-10 03:20:48 +0000 |
---|---|---|
committer | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-10 03:20:48 +0000 |
commit | 003673f507cdc01edfb9f6af45094dad8ff09b36 (patch) | |
tree | 19e897c49484c42fc96d05300baee75c8d5d3465 /MdePkg/Library/BasePciCf8Lib | |
parent | 9748aecca6cad6a4a1782b415445d086af4e2bba (diff) | |
download | edk2-platforms-003673f507cdc01edfb9f6af45094dad8ff09b36.tar.xz |
Fixed a syntax error in BasePciCf8Lib/PciLib.c
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@852 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BasePciCf8Lib')
-rw-r--r-- | MdePkg/Library/BasePciCf8Lib/PciLib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Library/BasePciCf8Lib/PciLib.c b/MdePkg/Library/BasePciCf8Lib/PciLib.c index ca9b17abe2..cbbd407ead 100644 --- a/MdePkg/Library/BasePciCf8Lib/PciLib.c +++ b/MdePkg/Library/BasePciCf8Lib/PciLib.c @@ -1297,7 +1297,7 @@ PciCf8ReadBuffer ( {
UINTN ReturnValue;
- ASSERT_INVALID_PCI_ADDRESS (StartAddress);
+ ASSERT_INVALID_PCI_ADDRESS (StartAddress, 0);
ASSERT (((StartAddress & 0xFFF) + Size) <= 0x100);
if (Size == 0) {
@@ -1396,7 +1396,7 @@ PciCf8WriteBuffer ( {
UINTN ReturnValue;
- ASSERT_INVALID_PCI_ADDRESS (StartAddress);
+ ASSERT_INVALID_PCI_ADDRESS (StartAddress, 0);
ASSERT (((StartAddress & 0xFFF) + Size) <= 0x100);
if (Size == 0) {
|