diff options
author | Antoine Coeur <coeur@gmx.fr> | 2020-02-07 02:07:54 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-02-10 22:30:07 +0000 |
commit | efb565933428cc10e9c00dd162c67d4730d048e6 (patch) | |
tree | 2f1fc1cad750a184aca743d53604f67757a5dd64 /NetworkPkg/IScsiDxe/IScsiDriver.c | |
parent | 7de8045a092ff80abcba541367709d1a309c2961 (diff) | |
download | edk2-efb565933428cc10e9c00dd162c67d4730d048e6.zip edk2-efb565933428cc10e9c00dd162c67d4730d048e6.tar.gz edk2-efb565933428cc10e9c00dd162c67d4730d048e6.tar.bz2 |
NetworkPkg/IScsiDxe: Fix various typos
Fix various typos in comments and 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@linux.intel.com>
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
Message-Id: <20200207010831.9046-42-philmd@redhat.com>
Diffstat (limited to 'NetworkPkg/IScsiDxe/IScsiDriver.c')
-rw-r--r-- | NetworkPkg/IScsiDxe/IScsiDriver.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/NetworkPkg/IScsiDxe/IScsiDriver.c b/NetworkPkg/IScsiDxe/IScsiDriver.c index 94c9b22..98b7330 100644 --- a/NetworkPkg/IScsiDxe/IScsiDriver.c +++ b/NetworkPkg/IScsiDxe/IScsiDriver.c @@ -334,7 +334,7 @@ IScsiSupported ( @param[in] ControllerHandle Handle of the controller.
@param[in] IpVersion IP_VERSION_4 or IP_VERSION_6.
- @retval EFI_SUCCES This driver was started.
+ @retval EFI_SUCCESS This driver was started.
@retval EFI_ALREADY_STARTED This driver is already running on this device.
@retval EFI_INVALID_PARAMETER Any input parameter is invalid.
@retval EFI_NOT_FOUND There is no sufficient information to establish
@@ -720,7 +720,7 @@ IScsiStart ( }
//
- // Restore the origial user setting which specifies the proxy/virtual iSCSI target to NV region.
+ // Restore the original user setting which specifies the proxy/virtual iSCSI target to NV region.
//
NvData = &AttemptConfigData->SessionConfigData;
if (NvData->RedirectFlag) {
@@ -1091,7 +1091,7 @@ IScsiStop ( }
//
- // Get the handle of the controller we are controling.
+ // Get the handle of the controller we are controlling.
//
if (IpVersion == IP_VERSION_4) {
ProtocolGuid = &gIScsiV4PrivateGuid;
@@ -1154,7 +1154,7 @@ IScsiStop ( IScsiRemoveNic (IScsiController);
//
- // Update the iSCSI Boot Firware Table.
+ // Update the iSCSI Boot Firmware Table.
//
IScsiPublishIbft ();
@@ -1504,7 +1504,7 @@ IScsiUnload ( EFI_COMPONENT_NAME2_PROTOCOL *ComponentName2;
//
- // Try to disonnect the driver from the devices it's controlling.
+ // Try to disconnect the driver from the devices it's controlling.
//
Status = gBS->LocateHandleBuffer (
AllHandles,
|