UefiCpuPkg/RegisterCpuFeaturesLib: Fix ECC issues.

Changes include:
1. Remove extra white space at the end of line.
2. Add comments for the new add function parameter.
3. Update IN OUT tag for function parameter.

Cc: Dandan Bi <dandan.bi@intel.com>
Cc: Ruiyu Ni <ruiyu.ni@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
This commit is contained in:
Eric Dong 2018-10-25 09:51:00 +08:00
parent 2b0c199465
commit 1c15179c8f
2 changed files with 14 additions and 12 deletions

View File

@ -146,6 +146,8 @@ GetProcessorInformation (
@param[in] Procedure A pointer to the function to be run on
enabled APs of the system.
@param[in] MpEvent The Event used to sync the result.
**/
VOID
StartupAPsWorker (

View File

@ -160,7 +160,7 @@ DetectFeatureScope (
/**
Clear dependence for the specified type.
@param[in] CurrentFeature Cpu feature need to clear.
@param[in] CpuFeature Cpu feature need to clear.
@param[in] Before Before or after dependence relationship.
**/
@ -207,8 +207,8 @@ ClearFeatureScope (
on dependce relationship to decide how to insert current feature and
adjust the feature dependence.
@param[in] PreviousFeature CPU feature current before the find one.
@param[in] CurrentFeature Cpu feature need to adjust.
@param[in, out] PreviousFeature CPU feature current before the find one.
@param[in, out] CurrentFeature Cpu feature need to adjust.
@param[in] Before Before or after dependence relationship.
@retval TRUE means the current feature dependence has been adjusted.
@ -255,8 +255,8 @@ AdjustFeaturesDependence (
Base on dependence relationship to asjust feature order.
@param[in] FeatureList Pointer to CPU feature list
@param[in] FindEntry The entry this feature depend on.
@param[in] CurrentEntry The entry for this feature.
@param[in, out] FindEntry The entry this feature depend on.
@param[in, out] CurrentEntry The entry for this feature.
@param[in] Before Before or after dependence relationship.
**/