summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRebecca Cran <quic_rcran@quicinc.com>2022-11-29 20:27:26 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2022-12-21 03:20:33 +0000
commit4bdc41cf17c5788e41b11a82ecc90fe194c04a06 (patch)
treede3cab6638c10f7639e1a231cf82c56da396c93e
parentec25e904c7da70302f2725e2005e3762f1ae891e (diff)
downloadedk2-4bdc41cf17c5788e41b11a82ecc90fe194c04a06.tar.gz
edk2-4bdc41cf17c5788e41b11a82ecc90fe194c04a06.tar.bz2
edk2-4bdc41cf17c5788e41b11a82ecc90fe194c04a06.zip
MdePkg: Fix typo of EFI_INVALID_PARAMETER in Protocol/UsbIo.h
Fix typo of EFI_INVALID_PARAMETER in Protocol/UsbIo.h by adding a missing 'R'. Signed-off-by: Rebecca Cran <rebecca@quicinc.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
-rw-r--r--MdePkg/Include/Protocol/UsbIo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/MdePkg/Include/Protocol/UsbIo.h b/MdePkg/Include/Protocol/UsbIo.h
index 4816b9039e..a780b4e07b 100644
--- a/MdePkg/Include/Protocol/UsbIo.h
+++ b/MdePkg/Include/Protocol/UsbIo.h
@@ -105,7 +105,7 @@ EFI_STATUS
@retval EFI_SUCCESS The control transfer has been successfully executed.
@retval EFI_DEVICE_ERROR The transfer failed. The transfer status is returned in Status.
- @retval EFI_INVALID_PARAMETE One or more parameters are invalid.
+ @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
@retval EFI_OUT_OF_RESOURCES The request could not be completed due to a lack of resources.
@retval EFI_TIMEOUT The control transfer fails due to timeout.
@@ -148,7 +148,7 @@ EFI_STATUS
@retval EFI_SUCCESS The bulk transfer has been successfully executed.
@retval EFI_DEVICE_ERROR The transfer failed. The transfer status is returned in Status.
- @retval EFI_INVALID_PARAMETE One or more parameters are invalid.
+ @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
@retval EFI_OUT_OF_RESOURCES The request could not be submitted due to a lack of resources.
@retval EFI_TIMEOUT The control transfer fails due to timeout.