diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2023-08-04 11:24:34 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2023-08-11 13:19:27 +0200 |
commit | 2a598d0b2800aa23ba51adcf060cec524aaa63b2 (patch) | |
tree | b7c035f0fa57dab30af2768114f71f64230dac5c /lib/mpi/Makefile | |
parent | crypto: api - Use work queue in crypto_destroy_instance (diff) | |
download | linux-2a598d0b2800aa23ba51adcf060cec524aaa63b2.tar.xz linux-2a598d0b2800aa23ba51adcf060cec524aaa63b2.zip |
crypto: lib - Move mpi into lib/crypto
As lib/mpi is mostly used by crypto code, move it under lib/crypto
so that patches touching it get directed to the right mailing list.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Reviewed-by: Mimi Zohar <zohar@linux.ibm.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'lib/mpi/Makefile')
-rw-r--r-- | lib/mpi/Makefile | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/lib/mpi/Makefile b/lib/mpi/Makefile deleted file mode 100644 index 6e6ef9a34fe1..000000000000 --- a/lib/mpi/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# SPDX-License-Identifier: GPL-2.0 -# -# MPI multiprecision maths library (from gpg) -# - -obj-$(CONFIG_MPILIB) = mpi.o - -mpi-y = \ - generic_mpih-lshift.o \ - generic_mpih-mul1.o \ - generic_mpih-mul2.o \ - generic_mpih-mul3.o \ - generic_mpih-rshift.o \ - generic_mpih-sub1.o \ - generic_mpih-add1.o \ - ec.o \ - mpicoder.o \ - mpi-add.o \ - mpi-bit.o \ - mpi-cmp.o \ - mpi-sub-ui.o \ - mpi-div.o \ - mpi-inv.o \ - mpi-mod.o \ - mpi-mul.o \ - mpih-cmp.o \ - mpih-div.o \ - mpih-mul.o \ - mpi-pow.o \ - mpiutil.o |