diff options
author | Thomas Gleixner <[email protected]> | 2018-04-22 18:23:50 +0200 |
---|---|---|
committer | Kees Cook <[email protected]> | 2018-04-24 19:50:07 -0700 |
commit | dc8f923eaee24061c557cb3221abeea3b95072c4 (patch) | |
tree | 4e4340c26189a887dd52265fd6cc2fff6c67eb3a | |
parent | 3413e1891d443b9e936b4b6fb0ba4cdc38ff71b6 (diff) |
rslib: Add SPDX identifiers
The Reed-Solomon library is based on code from Phil Karn who granted
permission to import it into the kernel under the GPL V2.
See commit 15b5423757a7 ("Shared Reed-Solomon ECC library") in the history
git tree at: git://git.kernel.org/pub/scm/linux/kernel/git/tglx/history.git
...
The encoder/decoder code is lifted from the GPL'd userspace RS-library
written by Phil Karn. I modified/wrapped it to provide the different
functions which we need in the MTD/NAND code.
...
Signed-Off-By: Thomas Gleixner <[email protected]>
Signed-Off-By: David Woodhouse <[email protected]>
"No objections at all. Just keep the authorship notices." -- Phil Karn
Add the proper SPDX identifiers according to
Documentation/process/license-rules.rst.
Signed-off-by: Thomas Gleixner <[email protected]>
Reviewed-by: Kate Stewart <[email protected]>
Reviewed-by: Greg Kroah-Hartman <[email protected]>
Cc: Boris Brezillon <[email protected]>
Cc: Tony Luck <[email protected]>
Cc: Kees Cook <[email protected]>
Cc: Segher Boessenkool <[email protected]>
Cc: Kernel Hardening <[email protected]>
Cc: Richard Weinberger <[email protected]>
Cc: Mike Snitzer <[email protected]>
Cc: Anton Vorontsov <[email protected]>
Cc: Colin Cross <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: David Woodhouse <[email protected]>
Cc: Alasdair Kergon <[email protected]>
Signed-off-by: Kees Cook <[email protected]>
-rw-r--r-- | include/linux/rslib.h | 1 | ||||
-rw-r--r-- | lib/reed_solomon/decode_rs.c | 1 | ||||
-rw-r--r-- | lib/reed_solomon/encode_rs.c | 1 | ||||
-rw-r--r-- | lib/reed_solomon/reed_solomon.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/rslib.h b/include/linux/rslib.h index a596abaf2e56..7ace7eec3028 100644 --- a/include/linux/rslib.h +++ b/include/linux/rslib.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0 /* * Generic Reed Solomon encoder / decoder library * diff --git a/lib/reed_solomon/decode_rs.c b/lib/reed_solomon/decode_rs.c index c1ef9917bc85..d61007ade4a0 100644 --- a/lib/reed_solomon/decode_rs.c +++ b/lib/reed_solomon/decode_rs.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0 /* * Generic Reed Solomon encoder / decoder library * diff --git a/lib/reed_solomon/encode_rs.c b/lib/reed_solomon/encode_rs.c index edb1ba059c16..10ca1ebb13dd 100644 --- a/lib/reed_solomon/encode_rs.c +++ b/lib/reed_solomon/encode_rs.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0 /* * Generic Reed Solomon encoder / decoder library * diff --git a/lib/reed_solomon/reed_solomon.c b/lib/reed_solomon/reed_solomon.c index 880fcdaf3346..0c1a818c8018 100644 --- a/lib/reed_solomon/reed_solomon.c +++ b/lib/reed_solomon/reed_solomon.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0 /* * Generic Reed Solomon encoder / decoder library * |