]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseIoLibIntrinsic/IoLibIcc.c
MdePkg: Clean up source files
[mirror_edk2.git] / MdePkg / Library / BaseIoLibIntrinsic / IoLibIcc.c
index 87bc4cf0059e0538c877b4a1c03bdf399eff04f1..3036084f0caf9603f3b8a96959d3936f90876fab 100644 (file)
@@ -2,7 +2,7 @@
   I/O Library. This file has compiler specifics for ICC as there\r
   is no ANSI C standard for doing IO.\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 are\r
   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
@@ -73,7 +73,7 @@ IoWrite8 (
     mov dx, word ptr [Port]\r
     out dx, al\r
   }\r
-  return Value; \r
+  return Value;\r
 }\r
 \r
 /**\r
@@ -119,7 +119,7 @@ IoRead16 (
 \r
   If 16-bit I/O port operations are not supported, then ASSERT().\r
   If Port is not aligned on a 16-bit boundary, then ASSERT().\r
-  \r
+\r
   @param  Port  The I/O port to write.\r
   @param  Value The value to write to the I/O port.\r
 \r
@@ -153,7 +153,7 @@ IoWrite16 (
 \r
   If 32-bit I/O port operations are not supported, then ASSERT().\r
   If Port is not aligned on a 32-bit boundary, then ASSERT().\r
-  \r
+\r
   @param  Port  The I/O port to read.\r
 \r
   @return The value read.\r
@@ -174,7 +174,7 @@ IoRead32 (
     in  eax, dx\r
     mov dword ptr [Data], eax\r
   }\r
-  \r
+\r
   return Data;\r
 }\r
 \r
@@ -187,7 +187,7 @@ IoRead32 (
 \r
   If 32-bit I/O port operations are not supported, then ASSERT().\r
   If Port is not aligned on a 32-bit boundary, then ASSERT().\r
-  \r
+\r
   @param  Port  The I/O port to write.\r
   @param  Value The value to write to the I/O port.\r
 \r
@@ -202,7 +202,7 @@ IoWrite32 (
   )\r
 {\r
   ASSERT ((Port & 3) == 0);\r
-  \r
+\r
   __asm {\r
     mov eax, dword ptr [Value]\r
     mov dx, word ptr [Port]\r