]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Protocol/PlatformDriverOverride.h
MdePkg: Clean up source files
[mirror_edk2.git] / MdePkg / Include / Protocol / PlatformDriverOverride.h
index 0fe42fc0a6742ea9901fba2d658ee0ea3e0d9a05..ee97e060dcb8da0a7392e081c2243bf9a2a07a05 100644 (file)
@@ -1,14 +1,14 @@
 /** @file\r
   Platform Driver Override protocol as defined in the UEFI 2.1 specification.\r
 \r
-  Copyright (c) 2006 - 2011, 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
@@ -29,24 +29,24 @@ typedef struct _EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL  EFI_PLATFORM_DRIVER_OVERR
 // Prototypes for the Platform Driver Override Protocol\r
 //\r
 \r
-/**                                                                 \r
+/**\r
   Retrieves the image handle of the platform override driver for a controller in the system.\r
-    \r
+\r
   @param  This                  A pointer to the EFI_PLATFORM_DRIVER_OVERRIDE_\r
-                                PROTOCOL instance.                            \r
+                                PROTOCOL instance.\r
   @param  ControllerHandle      The device handle of the controller to check if a driver override\r
-                                exists.                                                          \r
+                                exists.\r
   @param  DriverImageHandle     On input, a pointer to the previous driver image handle returned\r
-                                by GetDriver(). On output, a pointer to the next driver         \r
-                                image handle.                                                   \r
-                                \r
+                                by GetDriver(). On output, a pointer to the next driver\r
+                                image handle.\r
+\r
   @retval EFI_SUCCESS           The driver override for ControllerHandle was returned in\r
-                                DriverImageHandle.                                      \r
+                                DriverImageHandle.\r
   @retval EFI_NOT_FOUND         A driver override for ControllerHandle was not found.\r
   @retval EFI_INVALID_PARAMETER The handle specified by ControllerHandle is NULL.\r
   @retval EFI_INVALID_PARAMETER DriverImageHandle is not a handle that was returned on a\r
-                                previous call to GetDriver().                           \r
-                                   \r
+                                previous call to GetDriver().\r
+\r
 **/\r
 typedef\r
 EFI_STATUS\r
@@ -56,25 +56,25 @@ EFI_STATUS
   IN OUT EFI_HANDLE                                     *DriverImageHandle\r
   );\r
 \r
-/**                                                                 \r
+/**\r
   Retrieves the device path of the platform override driver for a controller in the system.\r
-    \r
+\r
   @param  This                  A pointer to the EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL instance.\r
   @param  ControllerHandle      The device handle of the controller to check if a driver override\r
-                                exists.                                                          \r
+                                exists.\r
   @param  DriverImagePath       On input, a pointer to the previous driver device path returned by\r
                                 GetDriverPath(). On output, a pointer to the next driver\r
                                 device path. Passing in a pointer to NULL will return the first\r
                                 driver device path for ControllerHandle.\r
-                                \r
+\r
   @retval EFI_SUCCESS           The driver override for ControllerHandle was returned in\r
-                                DriverImageHandle.                                      \r
-  @retval EFI_UNSUPPORTED       The operation is not supported.                                \r
+                                DriverImageHandle.\r
+  @retval EFI_UNSUPPORTED       The operation is not supported.\r
   @retval EFI_NOT_FOUND         A driver override for ControllerHandle was not found.\r
   @retval EFI_INVALID_PARAMETER The handle specified by ControllerHandle is NULL.\r
   @retval EFI_INVALID_PARAMETER DriverImagePath is not a device path that was returned on a\r
-                                previous call to GetDriverPath().                          \r
-                                   \r
+                                previous call to GetDriverPath().\r
+\r
 **/\r
 typedef\r
 EFI_STATUS\r
@@ -84,31 +84,31 @@ EFI_STATUS
   IN OUT EFI_DEVICE_PATH_PROTOCOL                       **DriverImagePath\r
   );\r
 \r
-/**                                                                 \r
+/**\r
   Used to associate a driver image handle with a device path that was returned on a prior call to the\r
-  GetDriverPath() service. This driver image handle will then be available through the               \r
-  GetDriver() service.                                                                               \r
-    \r
+  GetDriverPath() service. This driver image handle will then be available through the\r
+  GetDriver() service.\r
+\r
   @param  This                  A pointer to the EFI_PLATFORM_DRIVER_OVERRIDE_\r
-                                PROTOCOL instance.                            \r
-  @param  ControllerHandle      The device handle of the controller.                                                             \r
+                                PROTOCOL instance.\r
+  @param  ControllerHandle      The device handle of the controller.\r
   @param  DriverImagePath       A pointer to the driver device path that was returned in a prior\r
-                                call to GetDriverPath().                                                                        \r
+                                call to GetDriverPath().\r
   @param  DriverImageHandle     The driver image handle that was returned by LoadImage()\r
-                                when the driver specified by DriverImagePath was loaded \r
-                                into memory.                                            \r
-                                \r
-  @retval EFI_SUCCESS           The association between DriverImagePath and                   \r
+                                when the driver specified by DriverImagePath was loaded\r
+                                into memory.\r
+\r
+  @retval EFI_SUCCESS           The association between DriverImagePath and\r
                                 DriverImageHandle was established for the controller specified\r
-                                by ControllerHandle.                                                                            \r
-  @retval EFI_UNSUPPORTED       The operation is not supported.                                \r
+                                by ControllerHandle.\r
+  @retval EFI_UNSUPPORTED       The operation is not supported.\r
   @retval EFI_NOT_FOUND         DriverImagePath is not a device path that was returned on a prior\r
-                                call to GetDriverPath() for the controller specified by          \r
-                                ControllerHandle.                                                \r
+                                call to GetDriverPath() for the controller specified by\r
+                                ControllerHandle.\r
   @retval EFI_INVALID_PARAMETER ControllerHandle is NULL.\r
   @retval EFI_INVALID_PARAMETER DriverImagePath is not a valid device path.\r
   @retval EFI_INVALID_PARAMETER DriverImageHandle is not a valid image handle.\r
-                                   \r
+\r
 **/\r
 typedef\r
 EFI_STATUS\r
@@ -120,13 +120,13 @@ EFI_STATUS
   );\r
 \r
 ///\r
-/// This protocol matches one or more drivers to a controller. A platform driver \r
-/// produces this protocol, and it is installed on a separate handle. This protocol \r
-/// is used by the ConnectController() boot service to select the best driver \r
-/// for a controller. All of the drivers returned by this protocol have a higher \r
-/// precedence than drivers found from an EFI Bus Specific Driver Override Protocol \r
-/// or drivers found from the general UEFI driver Binding search algorithm. If more \r
-/// than one driver is returned by this protocol, then the drivers are returned in \r
+/// This protocol matches one or more drivers to a controller. A platform driver\r
+/// produces this protocol, and it is installed on a separate handle. This protocol\r
+/// is used by the ConnectController() boot service to select the best driver\r
+/// for a controller. All of the drivers returned by this protocol have a higher\r
+/// precedence than drivers found from an EFI Bus Specific Driver Override Protocol\r
+/// or drivers found from the general UEFI driver Binding search algorithm. If more\r
+/// than one driver is returned by this protocol, then the drivers are returned in\r
 /// order from highest precedence to lowest precedence.\r
 ///\r
 struct _EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL {\r