ShellPkg/UefiHandleParsingLib: fix IN/OUT notation in child ctrlr parsing
"MatchingHandleCount" is an output parameter of ParseHandleDatabaseForChildControllers(). Cc: Jaben Carsey <jaben.carsey@intel.com> Cc: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Tapan Shah <tapandshah@hpe.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Tapan Shah <tapandshah@hpe.com>
This commit is contained in:
@ -306,7 +306,7 @@ ParseHandleDatabaseForChildDevices(
|
|||||||
Gets handles for any child controllers of the passed in controller.
|
Gets handles for any child controllers of the passed in controller.
|
||||||
|
|
||||||
@param[in] ControllerHandle The handle of the "parent controller".
|
@param[in] ControllerHandle The handle of the "parent controller".
|
||||||
@param[in] MatchingHandleCount The pointer to the number of handles in
|
@param[out] MatchingHandleCount The pointer to the number of handles in
|
||||||
MatchingHandleBuffer on return.
|
MatchingHandleBuffer on return.
|
||||||
@param[out] MatchingHandleBuffer The buffer containing handles on a successful
|
@param[out] MatchingHandleBuffer The buffer containing handles on a successful
|
||||||
return.
|
return.
|
||||||
@ -317,7 +317,7 @@ EFI_STATUS
|
|||||||
EFIAPI
|
EFIAPI
|
||||||
ParseHandleDatabaseForChildControllers(
|
ParseHandleDatabaseForChildControllers(
|
||||||
IN CONST EFI_HANDLE ControllerHandle,
|
IN CONST EFI_HANDLE ControllerHandle,
|
||||||
IN UINTN *MatchingHandleCount,
|
OUT UINTN *MatchingHandleCount,
|
||||||
OUT EFI_HANDLE **MatchingHandleBuffer OPTIONAL
|
OUT EFI_HANDLE **MatchingHandleBuffer OPTIONAL
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -2723,7 +2723,7 @@ ParseHandleDatabaseByRelationship (
|
|||||||
Gets handles for any child controllers of the passed in controller.
|
Gets handles for any child controllers of the passed in controller.
|
||||||
|
|
||||||
@param[in] ControllerHandle The handle of the "parent controller"
|
@param[in] ControllerHandle The handle of the "parent controller"
|
||||||
@param[in] MatchingHandleCount Pointer to the number of handles in
|
@param[out] MatchingHandleCount Pointer to the number of handles in
|
||||||
MatchingHandleBuffer on return.
|
MatchingHandleBuffer on return.
|
||||||
@param[out] MatchingHandleBuffer Buffer containing handles on a successful
|
@param[out] MatchingHandleBuffer Buffer containing handles on a successful
|
||||||
return.
|
return.
|
||||||
@ -2735,7 +2735,7 @@ EFI_STATUS
|
|||||||
EFIAPI
|
EFIAPI
|
||||||
ParseHandleDatabaseForChildControllers(
|
ParseHandleDatabaseForChildControllers(
|
||||||
IN CONST EFI_HANDLE ControllerHandle,
|
IN CONST EFI_HANDLE ControllerHandle,
|
||||||
IN UINTN *MatchingHandleCount,
|
OUT UINTN *MatchingHandleCount,
|
||||||
OUT EFI_HANDLE **MatchingHandleBuffer OPTIONAL
|
OUT EFI_HANDLE **MatchingHandleBuffer OPTIONAL
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user