]> 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 f6bd81911481fa39033392b16f5843661512cd5b..7f34ecd2689ea210f61b14aa5ffc958c52f3fb93 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Common I/O Library routines.\r
 \r
-  Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\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
@@ -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