summaryrefslogtreecommitdiff
path: root/MdePkg/Library/UefiUsbLib/Hid.c
diff options
context:
space:
mode:
authorklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-10 03:28:54 +0000
committerklu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524>2008-12-10 03:28:54 +0000
commit070a76b19386875d96f945262e832183d61f43da (patch)
tree4c43ffd3b003a92bd9da5606ad3e2b63033af2ec /MdePkg/Library/UefiUsbLib/Hid.c
parent530e25f536376c86c296aaee465461ddb04fc321 (diff)
downloadedk2-platforms-070a76b19386875d96f945262e832183d61f43da.tar.xz
Synchronize interface function comment from declaration in library class header file to implementation in library instance.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6957 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/UefiUsbLib/Hid.c')
-rw-r--r--MdePkg/Library/UefiUsbLib/Hid.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/MdePkg/Library/UefiUsbLib/Hid.c b/MdePkg/Library/UefiUsbLib/Hid.c
index d2a4b577ff..4858ed6f7d 100644
--- a/MdePkg/Library/UefiUsbLib/Hid.c
+++ b/MdePkg/Library/UefiUsbLib/Hid.c
@@ -98,7 +98,7 @@ UsbGetHidDescriptor (
@retval EFI_SUCCESS The request executed successfully.
@retval EFI_OUT_OF_RESOURCES The request could not be completed because the
- buffer specifed by DescriptorLength and DescriptorBuffer
+ buffer specified by DescriptorLength and DescriptorBuffer
is not large enough to hold the result of the request.
@retval EFI_TIMEOUT A timeout occurred executing the request.
@retval EFI_DEVICE_ERROR The request failed due to a device error.
@@ -389,7 +389,7 @@ UsbSetReportRequest (
IN UINT8 Interface,
IN UINT8 ReportId,
IN UINT8 ReportType,
- IN UINT16 ReportLength,
+ IN UINT16 ReportLen,
IN UINT8 *Report
)
{
@@ -415,7 +415,7 @@ UsbSetReportRequest (
EfiUsbDataOut,
TIMEOUT_VALUE,
Report,
- ReportLength,
+ ReportLen,
&Status
);