diff options
author | Antoine Coeur <coeur@gmx.fr> | 2020-02-07 02:08:06 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-02-10 22:30:07 +0000 |
commit | e79bf8d707a13d5cd5b6c34f6cd2bf5c25b4ee9e (patch) | |
tree | 1ccf0a92db815bef34df2cd924c57a3d2d075193 | |
parent | 5add2c557773a1e07245926e4768c5d69f666213 (diff) | |
download | edk2-e79bf8d707a13d5cd5b6c34f6cd2bf5c25b4ee9e.tar.gz edk2-e79bf8d707a13d5cd5b6c34f6cd2bf5c25b4ee9e.tar.bz2 edk2-e79bf8d707a13d5cd5b6c34f6cd2bf5c25b4ee9e.zip |
NetworkPkg/VlanConfigDxe: Fix few typos
Correctly write 'EFI_SUCCESS' in the documentation.
Cc: Jiaxin Wu <jiaxin.wu@intel.com>
Cc: Siyuan Fu <siyuan.fu@intel.com>
Cc: Maciej Rabeda <maciej.rabeda@intel.com>
Signed-off-by: Antoine Coeur <coeur@gmx.fr>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Reviewed-by: Maciej Rabeda <maciej.rabeda@intel.com>
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
Message-Id: <20200207010831.9046-54-philmd@redhat.com>
-rw-r--r-- | NetworkPkg/VlanConfigDxe/VlanConfigDriver.c | 8 | ||||
-rw-r--r-- | NetworkPkg/VlanConfigDxe/VlanConfigImpl.h | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/NetworkPkg/VlanConfigDxe/VlanConfigDriver.c b/NetworkPkg/VlanConfigDxe/VlanConfigDriver.c index c717d9ea52..ae636b763f 100644 --- a/NetworkPkg/VlanConfigDxe/VlanConfigDriver.c +++ b/NetworkPkg/VlanConfigDxe/VlanConfigDriver.c @@ -24,7 +24,7 @@ EFI_DRIVER_BINDING_PROTOCOL gVlanConfigDriverBinding = { @param[in] ImageHandle The image handle of the driver.
@param[in] SystemTable The system table.
- @retval EFI_SUCCES All the related protocols are installed on the driver.
+ @retval EFI_SUCCESS All the related protocols are installed on the driver.
@retval Others Failed to install protocols.
**/
@@ -54,7 +54,7 @@ VlanConfigDriverEntryPoint ( @param[in] RemainingDevicePath Optional parameter use to pick a specific child
device to start.
- @retval EFI_SUCCES This driver supports this device
+ @retval EFI_SUCCESS This driver supports this device
@retval EFI_ALREADY_STARTED This driver is already running on this device
@retval other This driver does not support this device
@@ -104,7 +104,7 @@ VlanConfigDriverBindingSupported ( @param[in] RemainingDevicePath Optional parameter use to pick a specific child
device to start.
- @retval EFI_SUCCES This driver is added to ControllerHandle
+ @retval EFI_SUCCESS This driver is added to ControllerHandle
@retval EFI_ALREADY_STARTED This driver is already running on ControllerHandle
@retval other This driver does not support this device
@@ -236,7 +236,7 @@ ErrorExit: of children is zero stop the entire bus driver.
@param[in] ChildHandleBuffer List of Child Handles to Stop.
- @retval EFI_SUCCES This driver is removed ControllerHandle
+ @retval EFI_SUCCESS This driver is removed ControllerHandle
@retval other This driver was not removed from this device
**/
diff --git a/NetworkPkg/VlanConfigDxe/VlanConfigImpl.h b/NetworkPkg/VlanConfigDxe/VlanConfigImpl.h index 14f99c03b7..2f1f17e6ef 100644 --- a/NetworkPkg/VlanConfigDxe/VlanConfigImpl.h +++ b/NetworkPkg/VlanConfigDxe/VlanConfigImpl.h @@ -185,7 +185,7 @@ VlanConfigComponentNameGetControllerName ( @param[in] RemainingDevicePath Optional parameter use to pick a specific child
device to start.
- @retval EFI_SUCCES This driver supports this device
+ @retval EFI_SUCCESS This driver supports this device
@retval EFI_ALREADY_STARTED This driver is already running on this device
@retval other This driver does not support this device
@@ -206,7 +206,7 @@ VlanConfigDriverBindingSupported ( @param[in] RemainingDevicePath Optional parameter use to pick a specific child
device to start.
- @retval EFI_SUCCES This driver is added to ControllerHandle
+ @retval EFI_SUCCESS This driver is added to ControllerHandle
@retval EFI_ALREADY_STARTED This driver is already running on ControllerHandle
@retval other This driver does not support this device
@@ -228,7 +228,7 @@ VlanConfigDriverBindingStart ( of children is zero stop the entire bus driver.
@param[in] ChildHandleBuffer List of Child Handles to Stop.
- @retval EFI_SUCCES This driver is removed ControllerHandle
+ @retval EFI_SUCCESS This driver is removed ControllerHandle
@retval other This driver was not removed from this device
**/
|