]> git.proxmox.com Git - mirror_edk2.git/commitdiff
IN OUT modifiers corrected
authorjji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 12 Dec 2008 06:39:33 +0000 (06:39 +0000)
committerjji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 12 Dec 2008 06:39:33 +0000 (06:39 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7011 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Include/Library/UefiUsbLib.h
MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLibDevicePathProtocol.inf
MdePkg/Library/UefiUsbLib/Hid.c

index 0594ceac52beafe1638d000c9a646eb7aaace7ad..9c63d945af891991ff5cd61e1ed0f3cadf54d817 100644 (file)
@@ -105,7 +105,7 @@ EFIAPI
 UsbGetProtocolRequest (\r
   IN EFI_USB_IO_PROTOCOL     *UsbIo,\r
   IN UINT8                   Interface,\r
-  IN UINT8                   *Protocol\r
+  OUT UINT8                   *Protocol\r
   );\r
 \r
 /**\r
@@ -244,12 +244,12 @@ UsbSetReportRequest (
 EFI_STATUS\r
 EFIAPI\r
 UsbGetReportRequest (\r
-  IN EFI_USB_IO_PROTOCOL     *UsbIo,\r
-  IN UINT8                   Interface,\r
-  IN UINT8                   ReportId,\r
-  IN UINT8                   ReportType,\r
-  IN UINT16                  ReportLen,\r
-  IN UINT8                   *Report\r
+  IN  EFI_USB_IO_PROTOCOL     *UsbIo,\r
+  IN  UINT8                   Interface,\r
+  IN  UINT8                   ReportId,\r
+  IN  UINT8                   ReportType,\r
+  IN  UINT16                  ReportLen,\r
+  OUT UINT8                   *Report\r
   );\r
 \r
 /**\r
index e0b4fb6e23f444c08ed3fbb096d04535c94fa0e8..1a2c617f607bdd293a2388625c6c481be41f1bc1 100644 (file)
@@ -1,10 +1,10 @@
 #/** @file\r
 # Instance of Device Path Library based on Device Path Protocol.\r
 #\r
-# Device Path Library that layers on top of the UEFI 2.0 Device Path Protocol.\r
+#  Device Path Library that layers on top of the UEFI 2.0 Device Path Protocol.\r
 #  This library is not available for EFI 1.10 modules.\r
 #\r
-# Copyright (c) 2007 - 2008, Intel Corporation\r
+#  Copyright (c) 2007 - 2008, Intel Corporation\r
 #\r
 #  All rights reserved. This program and the accompanying materials\r
 #  are licensed and made available under the terms and conditions of the BSD License\r
index 95b6a5969fe9ad46d8f215d991a2c862041bdfb6..be2e651cde585667354bb2e7cddf7a2cdc890681 100644 (file)
@@ -163,9 +163,9 @@ UsbGetReportDescriptor (
 EFI_STATUS\r
 EFIAPI\r
 UsbGetProtocolRequest (\r
-  IN EFI_USB_IO_PROTOCOL     *UsbIo,\r
-  IN UINT8                   Interface,\r
-  IN UINT8                   *Protocol\r
+  IN  EFI_USB_IO_PROTOCOL     *UsbIo,\r
+  IN  UINT8                   Interface,\r
+  OUT UINT8                   *Protocol\r
   )\r
 {\r
   UINT32                  Status;\r
@@ -450,12 +450,12 @@ UsbSetReportRequest (
 EFI_STATUS\r
 EFIAPI\r
 UsbGetReportRequest (\r
-  IN EFI_USB_IO_PROTOCOL     *UsbIo,\r
-  IN UINT8                   Interface,\r
-  IN UINT8                   ReportId,\r
-  IN UINT8                   ReportType,\r
-  IN UINT16                  ReportLen,\r
-  IN UINT8                   *Report\r
+  IN  EFI_USB_IO_PROTOCOL     *UsbIo,\r
+  IN  UINT8                   Interface,\r
+  IN  UINT8                   ReportId,\r
+  IN  UINT8                   ReportType,\r
+  IN  UINT16                  ReportLen,\r
+  OUT UINT8                   *Report\r
   )\r
 {\r
   UINT32                  Status;\r