]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Protocol/DevicePathUtilities.h
MdePkg: Clean up source files
[mirror_edk2.git] / MdePkg / Include / Protocol / DevicePathUtilities.h
index 72ea8da0171c2eb3e1725c2f2e8808a03b5223ff..e15c4c659f1337dbdc80a3608df27f56b9e13221 100644 (file)
@@ -1,15 +1,15 @@
 /** @file\r
-  EFI_DEVICE_PATH_UTILITIES_PROTOCOL as defined in UEFI 2.0.  \r
+  EFI_DEVICE_PATH_UTILITIES_PROTOCOL as defined in UEFI 2.0.\r
   Use to create and manipulate device paths and device nodes.\r
 \r
-  Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
-  This program and the accompanying materials                          \r
-  are licensed and made available under the terms and conditions of the BSD License         \r
-  which accompanies this distribution.  The full text of the license may be found at        \r
-  http://opensource.org/licenses/bsd-license.php                                            \r
+  Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
+  This program and the accompanying materials\r
+  are licensed and made available under the terms and conditions of the BSD License\r
+  which accompanies this distribution.  The full text of the license may be found at\r
+  http://opensource.org/licenses/bsd-license.php\r
 \r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     \r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             \r
+  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
+  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 \r
 **/\r
 \r
   @param  DevicePath Points to the start of the EFI device path.\r
 \r
   @return Size  Size of the specified device path, in bytes, including the end-of-path tag.\r
-  @retval 0     DevicePath is NULL   \r
+  @retval 0     DevicePath is NULL\r
 \r
 **/\r
 typedef\r
 UINTN\r
 (EFIAPI *EFI_DEVICE_PATH_UTILS_GET_DEVICE_PATH_SIZE)(\r
   IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath\r
-  );    \r
-  \r
+  );\r
+\r
 \r
 /**\r
   Create a duplicate of the specified path.\r
@@ -53,11 +53,11 @@ typedef
 EFI_DEVICE_PATH_PROTOCOL*\r
 (EFIAPI *EFI_DEVICE_PATH_UTILS_DUP_DEVICE_PATH)(\r
   IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath\r
-  );      \r
+  );\r
 \r
 /**\r
   Create a new path by appending the second device path to the first.\r
-  If Src1 is NULL and Src2 is non-NULL, then a duplicate of Src2 is returned. \r
+  If Src1 is NULL and Src2 is non-NULL, then a duplicate of Src2 is returned.\r
   If Src1 is non-NULL and Src2 is NULL, then a duplicate of Src1 is returned.\r
   If Src1 and Src2 are both NULL, then a copy of an end-of-device-path is returned.\r
 \r
@@ -73,11 +73,11 @@ EFI_DEVICE_PATH_PROTOCOL*
 (EFIAPI *EFI_DEVICE_PATH_UTILS_APPEND_PATH)(\r
   IN CONST EFI_DEVICE_PATH_PROTOCOL *Src1,\r
   IN CONST EFI_DEVICE_PATH_PROTOCOL *Src2\r
-  );     \r
-  \r
+  );\r
+\r
 /**\r
   Creates a new path by appending the device node to the device path.\r
-  If DeviceNode is NULL then a copy of DevicePath is returned. \r
+  If DeviceNode is NULL then a copy of DevicePath is returned.\r
   If DevicePath is NULL then a copy of DeviceNode, followed by an end-of-device path device node is returned.\r
   If both DeviceNode and DevicePath are NULL then a copy of an end-of-device-path device node is returned.\r
 \r
@@ -110,7 +110,7 @@ EFI_DEVICE_PATH_PROTOCOL*
 (EFIAPI *EFI_DEVICE_PATH_UTILS_APPEND_INSTANCE)(\r
   IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath,\r
   IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePathInstance\r
-  );  \r
+  );\r
 \r
 /**\r
   Creates a copy of the current device path instance and returns a pointer to the next device path\r
@@ -119,7 +119,7 @@ EFI_DEVICE_PATH_PROTOCOL*
   @param  DevicePathInstance     On input, this holds the pointer to the current device path\r
                                  instance. On output, this holds the pointer to the next\r
                                  device path instance or NULL if there are no more device\r
-                                 path instances in the device path.  \r
+                                 path instances in the device path.\r
   @param  DevicePathInstanceSize On output, this holds the size of the device path instance,\r
                                  in bytes or zero, if DevicePathInstance is NULL.\r
                                  If NULL, then the instance size is not output.\r
@@ -133,7 +133,7 @@ EFI_DEVICE_PATH_PROTOCOL*
 (EFIAPI *EFI_DEVICE_PATH_UTILS_GET_NEXT_INSTANCE)(\r
   IN  OUT EFI_DEVICE_PATH_PROTOCOL  **DevicePathInstance,\r
   OUT UINTN                         *DevicePathInstanceSize\r
-  );  \r
+  );\r
 \r
 /**\r
   Creates a device node\r
@@ -156,7 +156,7 @@ EFI_DEVICE_PATH_PROTOCOL*
   IN UINT8                          NodeType,\r
   IN UINT8                          NodeSubType,\r
   IN UINT16                         NodeLength\r
-);   \r
+);\r
 \r
 /**\r
   Returns whether a device path is multi-instance.\r
@@ -171,11 +171,11 @@ typedef
 BOOLEAN\r
 (EFIAPI *EFI_DEVICE_PATH_UTILS_IS_MULTI_INSTANCE)(\r
   IN CONST EFI_DEVICE_PATH_PROTOCOL         *DevicePath\r
-  );                                                                                                       \r
-  \r
+  );\r
+\r
 ///\r
 /// This protocol is used to creates and manipulates device paths and device nodes.\r
-/// \r
+///\r
 typedef struct {\r
   EFI_DEVICE_PATH_UTILS_GET_DEVICE_PATH_SIZE GetDevicePathSize;\r
   EFI_DEVICE_PATH_UTILS_DUP_DEVICE_PATH      DuplicateDevicePath;\r
@@ -187,6 +187,6 @@ typedef struct {
   EFI_DEVICE_PATH_UTILS_CREATE_NODE          CreateDeviceNode;\r
 } EFI_DEVICE_PATH_UTILITIES_PROTOCOL;\r
 \r
-extern EFI_GUID gEfiDevicePathUtilitiesProtocolGuid; \r
+extern EFI_GUID gEfiDevicePathUtilitiesProtocolGuid;\r
 \r
 #endif\r