diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-23 12:55:05 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-23 12:55:05 +0000 |
commit | 1f33a17ff1678bb0e4c00757489aa417a18061e4 (patch) | |
tree | c7643840bd21df000cec7279883f43a1f755b01e /MdePkg/Library/BasePciExpressLib | |
parent | 49cff29c808deac5f214fb1917859c3907959ae0 (diff) | |
download | edk2-platforms-1f33a17ff1678bb0e4c00757489aa417a18061e4.tar.xz |
Adjust coding style for MemoryAllocationLib.
Add function header for an internal function of PciExpressLib
Fix a typo in one comment of UefiLib
Remove BaseSmbusLib
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1075 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BasePciExpressLib')
-rw-r--r-- | MdePkg/Library/BasePciExpressLib/PciLib.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/MdePkg/Library/BasePciExpressLib/PciLib.c b/MdePkg/Library/BasePciExpressLib/PciLib.c index 771c18f811..509a5e423f 100644 --- a/MdePkg/Library/BasePciExpressLib/PciLib.c +++ b/MdePkg/Library/BasePciExpressLib/PciLib.c @@ -31,8 +31,16 @@ ASSERT (((A) & ~0xfffffff) == 0)
+/**
+ Gets the base address of PCI Express.
+
+ This internal functions retrieves PCI Express Base Address via a PCD entry
+ PcdPciExpressBaseAddress.
+
+ @return The base address of PCI Express.
+
+**/
UINTN
-EFIAPI
GetPciExpressBaseAddress (
VOID
)
|