diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-03-03 17:47:52 +0800 |
---|---|---|
committer | Hao Wu <hao.a.wu@intel.com> | 2016-03-04 10:48:45 +0800 |
commit | 7e72bd3e89d0e65792cf9b45e756ff7e7f59f5ec (patch) | |
tree | 709e189f8bd3998a34ce4fe6a90c54e89433c069 /MdeModulePkg | |
parent | 6e51208f8b6e580b2ffa4ca00dd3668bf50de563 (diff) | |
download | edk2-platforms-7e72bd3e89d0e65792cf9b45e756ff7e7f59f5ec.tar.xz |
MdeModulePkg/PciHostBridgeLib: Correct the function header comments
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Cc: Shumin Qiu <shumin.qiu@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Qiu Shumin <shumin.qiu@intel.com>
(cherry picked from commit eea222ced0f8b40b2b02e9da31cca33ca6688faf)
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Include/Library/PciHostBridgeLib.h | 4 | ||||
-rw-r--r-- | MdeModulePkg/Library/PciHostBridgeLibNull/PciHostBridgeLibNull.c | 7 |
2 files changed, 5 insertions, 6 deletions
diff --git a/MdeModulePkg/Include/Library/PciHostBridgeLib.h b/MdeModulePkg/Include/Library/PciHostBridgeLib.h index b67ac5e17d..eb45cfdd79 100644 --- a/MdeModulePkg/Include/Library/PciHostBridgeLib.h +++ b/MdeModulePkg/Include/Library/PciHostBridgeLib.h @@ -69,8 +69,8 @@ PciHostBridgeGetRootBridges ( /**
Free the root bridge instances array returned from PciHostBridgeGetRootBridges().
- @param The root bridge instances array.
- @param The count of the array.
+ @param Bridges The root bridge instances array.
+ @param Count The count of the array.
**/
VOID
EFIAPI
diff --git a/MdeModulePkg/Library/PciHostBridgeLibNull/PciHostBridgeLibNull.c b/MdeModulePkg/Library/PciHostBridgeLibNull/PciHostBridgeLibNull.c index fe0632dd35..761e45b0de 100644 --- a/MdeModulePkg/Library/PciHostBridgeLibNull/PciHostBridgeLibNull.c +++ b/MdeModulePkg/Library/PciHostBridgeLibNull/PciHostBridgeLibNull.c @@ -41,11 +41,10 @@ PciHostBridgeGetRootBridges ( }
/**
- Free the root bridge instances array returned from
- PciHostBridgeGetRootBridges().
+ Free the root bridge instances array returned from PciHostBridgeGetRootBridges().
- @param The root bridge instances array.
- @param The count of the array.
+ @param Bridges The root bridge instances array.
+ @param Count The count of the array.
**/
VOID
EFIAPI
|