summaryrefslogtreecommitdiffstats
path: root/CryptoPkg/Library/IntrinsicLib
diff options
context:
space:
mode:
authorLiming Gao <liming.gao@intel.com>2018-06-27 17:32:13 +0800
committerLiming Gao <liming.gao@intel.com>2018-06-28 11:19:40 +0800
commit630f67ddfea296ccb59d7863796210e130eec67e (patch)
treea3df8861fc6967d317cca6db47076ec3fdc400b7 /CryptoPkg/Library/IntrinsicLib
parent2b5c643ae8f7e72a56deeacead6b5302a076d329 (diff)
downloadedk2-630f67ddfea296ccb59d7863796210e130eec67e.tar.gz
edk2-630f67ddfea296ccb59d7863796210e130eec67e.tar.bz2
edk2-630f67ddfea296ccb59d7863796210e130eec67e.zip
CryptoPkg: Clean up source files
1. Do not use tab characters 2. No trailing white space in one line 3. All files must end with CRLF Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'CryptoPkg/Library/IntrinsicLib')
-rw-r--r--CryptoPkg/Library/IntrinsicLib/BaseIntrinsicLib.uni4
-rw-r--r--CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/CryptoPkg/Library/IntrinsicLib/BaseIntrinsicLib.uni b/CryptoPkg/Library/IntrinsicLib/BaseIntrinsicLib.uni
index c40b856a49..6732df9cef 100644
--- a/CryptoPkg/Library/IntrinsicLib/BaseIntrinsicLib.uni
+++ b/CryptoPkg/Library/IntrinsicLib/BaseIntrinsicLib.uni
@@ -3,13 +3,13 @@
//
// This module is intrinsic routines wrapper library instance.
//
-// Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
+// Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
//
// This program and the accompanying materials
// are licensed and made available under the terms and conditions of the BSD License
// which accompanies this distribution. The full text of the license may be found at
// http://opensource.org/licenses/bsd-license.php
-//
+//
// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
//
diff --git a/CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c b/CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c
index e095f9aa0d..324381b6e9 100644
--- a/CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c
+++ b/CryptoPkg/Library/IntrinsicLib/MemoryIntrinsics.c
@@ -2,7 +2,7 @@
Intrinsic Memory Routines Wrapper Implementation for OpenSSL-based
Cryptographic Library.
-Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -28,8 +28,8 @@ void * memset (void *dest, int ch, size_t count)
{
//
// NOTE: Here we use one base implementation for memset, instead of the direct
- // optimized SetMem() wrapper. Because the IntrinsicLib has to be built
- // without whole program optimization option, and there will be some
+ // optimized SetMem() wrapper. Because the IntrinsicLib has to be built
+ // without whole program optimization option, and there will be some
// potential register usage errors when calling other optimized codes.
//
@@ -44,7 +44,7 @@ void * memset (void *dest, int ch, size_t count)
while (count-- != 0) {
*(Pointer++) = (UINT8)ch;
}
-
+
return dest;
}