]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Fix IN OUT specifiers
authormdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 6 Feb 2009 18:34:23 +0000 (18:34 +0000)
committermdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 6 Feb 2009 18:34:23 +0000 (18:34 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7474 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Include/Library/DevicePathLib.h
MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c
MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c

index 805ab5070463452fa0dbdec85c0ff2e750f21167..eb9de5a873f12fb6609a27285542010a27ee83ff 100644 (file)
@@ -172,8 +172,8 @@ IsDevicePathEndInstance (
 **/\r
 UINT16\r
 SetDevicePathNodeLength (\r
-  IN VOID   *Node,\r
-  IN UINTN  Length\r
+  IN OUT VOID  *Node,\r
+  IN UINTN     Length\r
   );\r
 \r
 /**\r
@@ -194,7 +194,7 @@ SetDevicePathNodeLength (
 **/\r
 VOID\r
 SetDevicePathEndNode (\r
-  IN VOID  *Node\r
+  OUT VOID  *Node\r
   );\r
 \r
 /**\r
index edc03f0e6b95939b41d7d705711eda00cd49d1d2..b2602e2a584f4577593bc58dcb06287926bc51ef 100644 (file)
@@ -221,8 +221,8 @@ IsDevicePathEndInstance (
 **/\r
 UINT16\r
 SetDevicePathNodeLength (\r
-  IN VOID   *Node,\r
-  IN UINTN  NodeLength\r
+  IN OUT VOID  *Node,\r
+  IN UINTN     NodeLength\r
   )\r
 {\r
   ASSERT (Node != NULL);\r
@@ -248,7 +248,7 @@ SetDevicePathNodeLength (
 **/\r
 VOID\r
 SetDevicePathEndNode (\r
-  IN VOID  *Node\r
+  OUT VOID  *Node\r
   )\r
 {\r
   ASSERT (Node != NULL);\r
index 08a0191c14fd0a76bf2a4e0ec9cca2f7c3c786d0..8f2488a3b2d8eb03a3d6426c80e8783a363fe25c 100644 (file)
@@ -250,8 +250,8 @@ IsDevicePathEndInstance (
 **/\r
 UINT16\r
 SetDevicePathNodeLength (\r
-  IN VOID   *Node,\r
-  IN UINTN  NodeLength\r
+  IN OUT VOID  *Node,\r
+  IN UINTN     NodeLength\r
   )\r
 {\r
   ASSERT (Node != NULL);\r
@@ -277,7 +277,7 @@ SetDevicePathNodeLength (
 **/\r
 VOID\r
 SetDevicePathEndNode (\r
-  IN VOID  *Node\r
+  OUT VOID  *Node\r
   )\r
 {\r
   ASSERT (Node != NULL);\r