]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/DxeSmbusLib/DxeSmbusLib.c
Add inf files for PeiSmbusLibSmbus2, PeiDxePostCodeLibReportStatusCode, PeiMemoryLib...
[mirror_edk2.git] / MdePkg / Library / DxeSmbusLib / DxeSmbusLib.c
index 18a7973f21226877f8f465ab01a16239c717080a..8ffa9c7aba6837d9a74a9558844e5ab223904100 100644 (file)
@@ -2,37 +2,37 @@
 Implementation of SmBusLib class library for PEI phase.\r
 \r
 Copyright (c) 2006, Intel Corporation<BR>\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
+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
 \r
 \r
 Module Name: DxeSmbusLib.c\r
 \r
 **/\r
 \r
+\r
 #include "InternalSmbusLib.h"\r
 \r
-#include <Protocol/SmbusHc.h>\r
 \r
 //\r
 // Globle varible to cache pointer to Smbus protocol.\r
 //\r
-STATIC EFI_SMBUS_HC_PROTOCOL      *mSmbus = NULL; \r
+STATIC EFI_SMBUS_HC_PROTOCOL      *mSmbus = NULL;\r
 \r
 /**\r
   The constructor function caches the pointer to Smbus protocol.\r
-  \r
+\r
   The constructor function locates Smbus protocol from protocol database.\r
-  It will ASSERT() if that operation fails and it will always return EFI_SUCCESS. \r
+  It will ASSERT() if that operation fails and it will always return EFI_SUCCESS.\r
 \r
   @param  ImageHandle   The firmware allocated handle for the EFI image.\r
   @param  SystemTable   A pointer to the EFI System Table.\r
-  \r
+\r
   @retval EFI_SUCCESS   The constructor always returns EFI_SUCCESS.\r
 \r
 **/\r
@@ -44,7 +44,7 @@ SmbusLibConstructor (
   )\r
 {\r
   EFI_STATUS  Status;\r
-  \r
+\r
   Status = gBS->LocateProtocol (&gEfiSmbusHcProtocolGuid, NULL, (VOID**) &mSmbus);\r
   ASSERT_EFI_ERROR (Status);\r
   ASSERT (mSmbus != NULL);\r
@@ -53,7 +53,7 @@ SmbusLibConstructor (
 }\r
 \r
 /**\r
-  Executes an SMBus operation to an SMBus controller. \r
+  Executes an SMBus operation to an SMBus controller.\r
 \r
   This function provides a standard way to execute Smbus script\r
   as defined in the SmBus Specification. The data can either be of\r
@@ -92,7 +92,7 @@ InternalSmBusExec (
                            SmbusDeviceAddress,\r
                            SMBUS_LIB_COMMAND (SmBusAddress),\r
                            SmbusOperation,\r
-                           SMBUS_LIB_PEC (SmBusAddress),  \r
+                           SMBUS_LIB_PEC (SmBusAddress),\r
                            &Length,\r
                            Buffer\r
                            );\r