mirror of https://github.com/acidanthera/audk.git
Add [in] [out] after doxygen @param tag
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9143 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
01a54966be
commit
5e33ee9452
|
@ -68,10 +68,10 @@ typedef struct {
|
|||
/**
|
||||
Reports the progress of a repair operation
|
||||
|
||||
@param Value A value between 0 and Limit that identifies the current
|
||||
@param[in] Value A value between 0 and Limit that identifies the current
|
||||
progress of the repair operation.
|
||||
|
||||
@param Limit The maximum value of Value for the current repair operation.
|
||||
@param[in] Limit The maximum value of Value for the current repair operation.
|
||||
For example, a driver that wants to specify progress in
|
||||
percent would use a Limit value of 100.
|
||||
|
||||
|
@ -97,15 +97,15 @@ EFI_STATUS
|
|||
optionally return warning messages, error messages, and a set of HII Forms that may
|
||||
be repair a controller that is not proper configured.
|
||||
|
||||
@param This A pointer to the EFI_DRIVER_HEALTH_PROTOCOL instance.
|
||||
@param[in] This A pointer to the EFI_DRIVER_HEALTH_PROTOCOL instance.
|
||||
|
||||
@param ControllerHandle The handle of the controller to retrieve the health status
|
||||
@param[in] ControllerHandle The handle of the controller to retrieve the health status
|
||||
on. This is an optional parameter that may be NULL. If
|
||||
this parameter is NULL, then the value of ChildHandle is
|
||||
ignored, and the combined health status of all the devices
|
||||
that the driver is managing is returned.
|
||||
|
||||
@param ChildHandle The handle of the child controller to retrieve the health
|
||||
@param[in] ChildHandle The handle of the child controller to retrieve the health
|
||||
status on. This is an optional parameter that may be NULL.
|
||||
This parameter is ignored of ControllerHandle is NULL. It
|
||||
will be NULL for device drivers. It will also be NULL for
|
||||
|
@ -114,13 +114,13 @@ EFI_STATUS
|
|||
attempt is made to collect the health status for a child
|
||||
controller produced by the driver.
|
||||
|
||||
@param HealthStatus A pointer to the health status that is returned by this
|
||||
@param[out] HealthStatus A pointer to the health status that is returned by this
|
||||
function. This is an optional parameter that may be NULL.
|
||||
This parameter is ignored of ControllerHandle is NULL.
|
||||
The health status for the controller specified by
|
||||
ControllerHandle and ChildHandle is returned.
|
||||
|
||||
@param MessageList A pointer to an array of warning or error messages associated
|
||||
@param[out] MessageList A pointer to an array of warning or error messages associated
|
||||
with the controller specified by ControllerHandle and
|
||||
ChildHandle. This is an optional parameter that may be NULL.
|
||||
MessageList is allocated by this function with the EFI Boot
|
||||
|
@ -136,7 +136,7 @@ EFI_STATUS
|
|||
EfiDriverHealthStatusReconnectRequired and
|
||||
EfiDriverHealthStatusRebootRequired.
|
||||
|
||||
@param FormHiiHandle A pointer to the HII handle for an HII form associated with the
|
||||
@param[out] FormHiiHandle A pointer to the HII handle for an HII form associated with the
|
||||
controller specified by ControllerHandle and ChildHandle.
|
||||
This is an optional parameter that may be NULL. An HII form
|
||||
is specified by a combination of an EFI_HII_HANDLE and an
|
||||
|
@ -196,15 +196,15 @@ EFI_STATUS
|
|||
Performs a repair operation on a controller in the platform. This function can
|
||||
optionally report repair progress information back to the platform.
|
||||
|
||||
@param This A pointer to the EFI_DRIVER_HEALTH_PROTOCOL instance.
|
||||
@param ControllerHandle The handle of the controller to repair.
|
||||
@param ChildHandle The handle of the child controller to repair. This is
|
||||
@param[in] This A pointer to the EFI_DRIVER_HEALTH_PROTOCOL instance.
|
||||
@param[in] ControllerHandle The handle of the controller to repair.
|
||||
@param[in] ChildHandle The handle of the child controller to repair. This is
|
||||
an optional parameter that may be NULL. It will be NULL
|
||||
for device drivers. It will also be NULL for bus
|
||||
drivers when an attempt is made to repair a bus controller.
|
||||
If will not be NULL when an attempt is made to repair a
|
||||
child controller produced by the driver.
|
||||
@param ProgressNotification A notification function that may be used by a driver to
|
||||
@param[in] ProgressNotification A notification function that may be used by a driver to
|
||||
report the progress of the repair operation. This is
|
||||
an optional parameter that may be NULL.
|
||||
|
||||
|
|
Loading…
Reference in New Issue