]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Protocol/DriverBinding.h
Grammatical and disclaimer changes (does not follow internal C coding stds.)
[mirror_edk2.git] / MdePkg / Include / Protocol / DriverBinding.h
index 571675d391e16f045980fa8bf7a249c5c23a31e8..e024c914f4b138700a43cb6614adfc34b12a41b5 100644 (file)
@@ -4,14 +4,14 @@
   This protocol is produced by every driver that follows the UEFI Driver Model, \r
   and it is the central component that allows drivers and controllers to be managed.\r
 \r
-  Copyright (c) 2006 - 2009, Intel Corporation                                                         \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
-  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
+Copyright (c) 2006 - 2010, Intel Corporation.  All rights reserved<BR>\r
+This program and the accompanying materials are licensed and made available under \r
+the terms and conditions of the BSD License that accompanies this distribution.  \r
+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
 \r
 **/\r
 \r
@@ -19,7 +19,7 @@
 #define __EFI_DRIVER_BINDING_H__\r
 \r
 ///\r
-/// Global ID for the ControllerHandle Driver Protocol\r
+/// The global ID for the ControllerHandle Driver Protocol.\r
 ///\r
 #define EFI_DRIVER_BINDING_PROTOCOL_GUID \\r
   { \\r
@@ -42,7 +42,7 @@ typedef struct _EFI_DRIVER_BINDING_PROTOCOL  EFI_DRIVER_BINDING_PROTOCOL;
   device specified by ControllerHandle may already be managed by the same driver or a \r
   different driver. This function must match its calls to AllocatePages() with FreePages(), \r
   AllocatePool() with FreePool(), and OpenProtocol() with CloseProtocol().  \r
-  Since ControllerHandle may have been previously started by the same driver, if a protocol is \r
+  Because ControllerHandle may have been previously started by the same driver, if a protocol is \r
   already in the opened state, then it must not be closed with CloseProtocol(). This is required \r
   to guarantee the state of ControllerHandle is not modified by this function.\r
 \r
@@ -84,7 +84,7 @@ EFI_STATUS
   The Start() function is designed to be invoked from the EFI boot service ConnectController().\r
   As a result, much of the error checking on the parameters to Start() has been moved into this \r
   common boot service. It is legal to call Start() from other locations, \r
-  but the following calling restrictions must be followed or the system behavior will not be deterministic.\r
+  but the following calling restrictions must be followed, or the system behavior will not be deterministic.\r
   1. ControllerHandle must be a valid EFI_HANDLE.\r
   2. If RemainingDevicePath is not NULL, then it must be a pointer to a naturally aligned\r
      EFI_DEVICE_PATH_PROTOCOL.\r
@@ -127,7 +127,7 @@ EFI_STATUS
   The Stop() function is designed to be invoked from the EFI boot service DisconnectController(). \r
   As a result, much of the error checking on the parameters to Stop() has been moved \r
   into this common boot service. It is legal to call Stop() from other locations, \r
-  but the following calling restrictions must be followed or the system behavior will not be deterministic.\r
+  but the following calling restrictions must be followed, or the system behavior will not be deterministic.\r
   1. ControllerHandle must be a valid EFI_HANDLE that was used on a previous call to this\r
      same driver's Start() function.\r
   2. The first NumberOfChildren handles of ChildHandleBuffer must all be a valid\r