]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseIoLibIntrinsic/IoLib.c
MdePkg: Clean up source files
[mirror_edk2.git] / MdePkg / Library / BaseIoLibIntrinsic / IoLib.c
index 46bb491a265010f3883e8a571697e7deb174eaca..7f34ecd2689ea210f61b14aa5ffc958c52f3fb93 100644 (file)
@@ -1,11 +1,11 @@
 /** @file\r
   Common I/O Library routines.\r
 \r
-  Copyright (c) 2006, Intel Corporation<BR>\r
-  All rights reserved. This program and the accompanying materials\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
+  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
@@ -107,7 +107,7 @@ MmioRead8 (
 \r
   @param  Address The MMIO register to write.\r
   @param  Value   The value to write to the MMIO register.\r
-  \r
+\r
   @return Value.\r
 \r
 **/\r
@@ -169,7 +169,7 @@ MmioRead16 (
 \r
   @param  Address The MMIO register to write.\r
   @param  Value   The value to write to the MMIO register.\r
-  \r
+\r
   @return Value.\r
 \r
 **/\r
@@ -185,7 +185,7 @@ MmioWrite16 (
   MemoryFence ();\r
   *(volatile UINT16*)Address = Value;\r
   MemoryFence ();\r
-  \r
+\r
   return Value;\r
 }\r
 \r
@@ -213,11 +213,11 @@ MmioRead32 (
   UINT32                            Value;\r
 \r
   ASSERT ((Address & 3) == 0);\r
-  \r
+\r
   MemoryFence ();\r
   Value = *(volatile UINT32*)Address;\r
   MemoryFence ();\r
-  \r
+\r
   return Value;\r
 }\r
 \r
@@ -233,7 +233,7 @@ MmioRead32 (
 \r
   @param  Address The MMIO register to write.\r
   @param  Value   The value to write to the MMIO register.\r
-  \r
+\r
   @return Value.\r
 \r
 **/\r
@@ -245,11 +245,11 @@ MmioWrite32 (
   )\r
 {\r
   ASSERT ((Address & 3) == 0);\r
-  \r
+\r
   MemoryFence ();\r
   *(volatile UINT32*)Address = Value;\r
   MemoryFence ();\r
-  \r
+\r
   return Value;\r
 }\r
 \r
@@ -277,7 +277,7 @@ MmioRead64 (
   UINT64                            Value;\r
 \r
   ASSERT ((Address & 7) == 0);\r
-  \r
+\r
   MemoryFence ();\r
   Value = *(volatile UINT64*)Address;\r
   MemoryFence ();\r
@@ -307,11 +307,11 @@ MmioWrite64 (
   )\r
 {\r
   ASSERT ((Address & 7) == 0);\r
-  \r
+\r
   MemoryFence ();\r
   *(volatile UINT64*)Address = Value;\r
   MemoryFence ();\r
-  \r
+\r
   return Value;\r
 }\r
 \r