Skip to content

Commit 6b8f648

Browse files
mrutland-armwilldeacon
authored andcommitted
arm64: update string routine copyrights and URLs
To make future archaeology easier, let's have the string routine comment blocks encode the specific upstream commit ID they were imported from. These are the same commit IDs as listed in the commits importing the code, expanded to 16 characters. Note that the routines have different commit IDs, each reprsenting the latest upstream commit which changed the particular routine. At the same time, let's consistently include 2021 in the copyright dates. Signed-off-by: Mark Rutland <mark.rutland@arm.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Robin Murphy <robin.murphy@arm.com> Cc: Will Deacon <will@kernel.org> Link: https://lore.kernel.org/r/20210602151358.35571-1-mark.rutland@arm.com Signed-off-by: Will Deacon <will@kernel.org>
1 parent 344323e commit 6b8f648

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

arch/arm64/lib/memcmp.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* SPDX-License-Identifier: GPL-2.0-only */
22
/*
3-
* Copyright (c) 2013-2020, Arm Limited.
3+
* Copyright (c) 2013-2021, Arm Limited.
44
*
55
* Adapted from the original at:
6-
* https://github.com/ARM-software/optimized-routines/blob/master/string/aarch64/memcmp.S
6+
* https://github.com/ARM-software/optimized-routines/blob/e823e3abf5f89ecb/string/aarch64/memcmp.S
77
*/
88

99
#include <linux/linkage.h>

arch/arm64/lib/memcpy.S

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* SPDX-License-Identifier: GPL-2.0-only */
22
/*
3-
* Copyright (c) 2012-2020, Arm Limited.
3+
* Copyright (c) 2012-2021, Arm Limited.
44
*
55
* Adapted from the original at:
6-
* https://github.com/ARM-software/optimized-routines/blob/master/string/aarch64/memcpy.S
6+
* https://github.com/ARM-software/optimized-routines/blob/afd6244a1f8d9229/string/aarch64/memcpy.S
77
*/
88

99
#include <linux/linkage.h>
@@ -249,4 +249,4 @@ EXPORT_SYMBOL(__memcpy)
249249
SYM_FUNC_END_ALIAS_PI(memmove)
250250
EXPORT_SYMBOL(memmove)
251251
SYM_FUNC_END_ALIAS(__memmove)
252-
EXPORT_SYMBOL(__memmove)
252+
EXPORT_SYMBOL(__memmove)

arch/arm64/lib/strcmp.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* SPDX-License-Identifier: GPL-2.0-only */
22
/*
3-
* Copyright (c) 2012-2020, Arm Limited.
3+
* Copyright (c) 2012-2021, Arm Limited.
44
*
55
* Adapted from the original at:
6-
* https://github.com/ARM-software/optimized-routines/blob/master/string/aarch64/strcmp.S
6+
* https://github.com/ARM-software/optimized-routines/blob/afd6244a1f8d9229/string/aarch64/strcmp.S
77
*/
88

99
#include <linux/linkage.h>

arch/arm64/lib/strlen.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* SPDX-License-Identifier: GPL-2.0-only */
22
/*
3-
* Copyright (c) 2013, Arm Limited.
3+
* Copyright (c) 2013-2021, Arm Limited.
44
*
55
* Adapted from the original at:
6-
* https://github.com/ARM-software/optimized-routines/blob/master/string/aarch64/strlen.S
6+
* https://github.com/ARM-software/optimized-routines/blob/98e4d6a5c13c8e54/string/aarch64/strlen.S
77
*/
88

99
#include <linux/linkage.h>

arch/arm64/lib/strncmp.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* SPDX-License-Identifier: GPL-2.0-only */
22
/*
3-
* Copyright (c) 2013, Arm Limited.
3+
* Copyright (c) 2013-2021, Arm Limited.
44
*
55
* Adapted from the original at:
6-
* https://github.com/ARM-software/optimized-routines/blob/master/string/aarch64/strncmp.S
6+
* https://github.com/ARM-software/optimized-routines/blob/e823e3abf5f89ecb/string/aarch64/strncmp.S
77
*/
88

99
#include <linux/linkage.h>

0 commit comments

Comments
 (0)