summaryrefslogtreecommitdiff
path: root/ArmPkg/Library/BaseMemoryLibStm
diff options
context:
space:
mode:
authorhhtian <hhtian@6f19259b-4bc3-4df7-8a09-765794883524>2010-04-29 12:15:47 +0000
committerhhtian <hhtian@6f19259b-4bc3-4df7-8a09-765794883524>2010-04-29 12:15:47 +0000
commitd6ebcab76903254f4423b7e7d3808fb0abaadb46 (patch)
treea67bae8401afa9d22b8424ed77c92dd03eca32b6 /ArmPkg/Library/BaseMemoryLibStm
parentcf748a1a6895a3418e2dea91bd0cd0e45f72c679 (diff)
downloadedk2-platforms-d6ebcab76903254f4423b7e7d3808fb0abaadb46.tar.xz
Update the copyright notice format
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10444 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPkg/Library/BaseMemoryLibStm')
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.S4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.asm4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.S4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.asm4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/BaseMemoryLibStm.inf6
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/CompareMemWrapper.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/CopyMem.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/CopyMemWrapper.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/MemLibGeneric.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/MemLibGuid.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/MemLibInternals.h4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/ScanMem16Wrapper.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/ScanMem32Wrapper.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/ScanMem64Wrapper.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/ScanMem8Wrapper.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/SetMem.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/SetMem16Wrapper.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/SetMem32Wrapper.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/SetMem64Wrapper.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/SetMemWrapper.c4
-rwxr-xr-xArmPkg/Library/BaseMemoryLibStm/ZeroMemWrapper.c4
21 files changed, 43 insertions, 43 deletions
diff --git a/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.S b/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.S
index 91a4dfcfe5..9d0d389a13 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.S
+++ b/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.S
@@ -6,8 +6,8 @@
# 32-bit aligned, else it does a byte copy. It also does a byte copy for
# any trailing bytes. It was updated to do 32-byte copies using stm/ldm.
#
-# Copyright (c) 2008-2010 Apple Inc. All rights reserved.<BR>
-# All rights reserved. This program and the accompanying materials
+# Copyright (c) 2008 - 2010, Apple Inc. 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.asm b/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.asm
index 19b68eea46..ea6fb3225d 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.asm
+++ b/ArmPkg/Library/BaseMemoryLibStm/Arm/CopyMem.asm
@@ -6,8 +6,8 @@
; 32-bit aligned, else it does a byte copy. It also does a byte copy for
; any trailing bytes. It was updated to do 32-byte copies using stm/ldm.
;
-; Copyright (c) 2008-2010 Apple Inc. All rights reserved.<BR>
-; All rights reserved. This program and the accompanying materials
+; Copyright (c) 2008 - 2010, Apple Inc. 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.S b/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.S
index 0c3697f065..94aa0ca3db 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.S
+++ b/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.S
@@ -6,8 +6,8 @@
# 32-bit aligned, else it does a byte copy. It also does a byte copy for
# any trailing bytes. It was updated to do 32-byte at a time.
#
-# Copyright (c) 2008-2010 Apple Inc. All rights reserved.<BR>
-# All rights reserved. This program and the accompanying materials
+# Copyright (c) 2008 - 2010, Apple Inc. 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.asm b/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.asm
index 7304f1c509..bed26fef6e 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.asm
+++ b/ArmPkg/Library/BaseMemoryLibStm/Arm/SetMem.asm
@@ -6,8 +6,8 @@
; 32-bit aligned, else it does a byte copy. It also does a byte copy for
; any trailing bytes. It was updated to do 32-byte at a time.
;
-; Copyright (c) 2008-2010 Apple Inc. All rights reserved.<BR>
-; All rights reserved. This program and the accompanying materials
+; Copyright (c) 2008 - 2010, Apple Inc. 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/BaseMemoryLibStm.inf b/ArmPkg/Library/BaseMemoryLibStm/BaseMemoryLibStm.inf
index 15e15c80b1..9a7b18b25b 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/BaseMemoryLibStm.inf
+++ b/ArmPkg/Library/BaseMemoryLibStm/BaseMemoryLibStm.inf
@@ -5,10 +5,10 @@
# SetMem worker functions replaced with assembler that uses
# ldm/stm.
#
-# Copyright (c) 2007 - 2010, Intel Corporation.
-# Portions Copyright (c) 2010, Apple, Inc. All rights reserved.
+# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
+# Portions copyright (c) 2010, Apple Inc. All rights reserved.<BR>
#
-# All rights reserved. This program and the accompanying materials
+# 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/CompareMemWrapper.c b/ArmPkg/Library/BaseMemoryLibStm/CompareMemWrapper.c
index 278ef3369e..9695c5b51b 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/CompareMemWrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/CompareMemWrapper.c
@@ -11,8 +11,8 @@
PeiMemoryLib
UefiMemoryLib
-Copyright (c) 2006 - 2009, Intel Corporation<BR>
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/CopyMem.c b/ArmPkg/Library/BaseMemoryLibStm/CopyMem.c
index aa2ffea437..b30faed560 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/CopyMem.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/CopyMem.c
@@ -3,8 +3,8 @@
out into its own source file so that it can be excluded from a build for a
particular platform easily if an optimized version is desired.
- Copyright (c) 2006 - 2008, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2008, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/CopyMemWrapper.c b/ArmPkg/Library/BaseMemoryLibStm/CopyMemWrapper.c
index 5077820be0..5fca133643 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/CopyMemWrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/CopyMemWrapper.c
@@ -12,8 +12,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/MemLibGeneric.c b/ArmPkg/Library/BaseMemoryLibStm/MemLibGeneric.c
index e9e0f171ba..ef7874877d 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/MemLibGeneric.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/MemLibGeneric.c
@@ -6,8 +6,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/MemLibGuid.c b/ArmPkg/Library/BaseMemoryLibStm/MemLibGuid.c
index 737341023a..d4e504a013 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/MemLibGuid.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/MemLibGuid.c
@@ -12,8 +12,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/MemLibInternals.h b/ArmPkg/Library/BaseMemoryLibStm/MemLibInternals.h
index f40299b9ca..10c741f2c3 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/MemLibInternals.h
+++ b/ArmPkg/Library/BaseMemoryLibStm/MemLibInternals.h
@@ -9,8 +9,8 @@
BaseMemoryLibOptDxe
BaseMemoryLibOptPei
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/ScanMem16Wrapper.c b/ArmPkg/Library/BaseMemoryLibStm/ScanMem16Wrapper.c
index 1122fb536e..3dc2d291c1 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/ScanMem16Wrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/ScanMem16Wrapper.c
@@ -12,8 +12,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/ScanMem32Wrapper.c b/ArmPkg/Library/BaseMemoryLibStm/ScanMem32Wrapper.c
index 60d5eff683..1c47131b59 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/ScanMem32Wrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/ScanMem32Wrapper.c
@@ -11,8 +11,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/ScanMem64Wrapper.c b/ArmPkg/Library/BaseMemoryLibStm/ScanMem64Wrapper.c
index 87d1643642..5161b29cad 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/ScanMem64Wrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/ScanMem64Wrapper.c
@@ -12,8 +12,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/ScanMem8Wrapper.c b/ArmPkg/Library/BaseMemoryLibStm/ScanMem8Wrapper.c
index ecf1bdd2a7..c547cb46e1 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/ScanMem8Wrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/ScanMem8Wrapper.c
@@ -12,8 +12,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/SetMem.c b/ArmPkg/Library/BaseMemoryLibStm/SetMem.c
index 2394f4878b..5c30e9b45f 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/SetMem.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/SetMem.c
@@ -4,8 +4,8 @@
build for a particular platform easily if an optimized version
is desired.
- Copyright (c) 2006 - 2010, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2010, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/SetMem16Wrapper.c b/ArmPkg/Library/BaseMemoryLibStm/SetMem16Wrapper.c
index d74b80f053..8129d21e0d 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/SetMem16Wrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/SetMem16Wrapper.c
@@ -11,8 +11,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/SetMem32Wrapper.c b/ArmPkg/Library/BaseMemoryLibStm/SetMem32Wrapper.c
index dc84d2093a..b57ba4057a 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/SetMem32Wrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/SetMem32Wrapper.c
@@ -11,8 +11,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/SetMem64Wrapper.c b/ArmPkg/Library/BaseMemoryLibStm/SetMem64Wrapper.c
index 05dc453c3a..f979580b17 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/SetMem64Wrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/SetMem64Wrapper.c
@@ -11,8 +11,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/SetMemWrapper.c b/ArmPkg/Library/BaseMemoryLibStm/SetMemWrapper.c
index e728175a5c..6d6ec38ae2 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/SetMemWrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/SetMemWrapper.c
@@ -12,8 +12,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009, Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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
diff --git a/ArmPkg/Library/BaseMemoryLibStm/ZeroMemWrapper.c b/ArmPkg/Library/BaseMemoryLibStm/ZeroMemWrapper.c
index 2923356f13..89520348ba 100755
--- a/ArmPkg/Library/BaseMemoryLibStm/ZeroMemWrapper.c
+++ b/ArmPkg/Library/BaseMemoryLibStm/ZeroMemWrapper.c
@@ -12,8 +12,8 @@
PeiMemoryLib
UefiMemoryLib
- Copyright (c) 2006 - 2009 , Intel Corporation<BR>
- All rights reserved. This program and the accompanying materials
+ Copyright (c) 2006 - 2009, 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