diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2022-02-10 13:09:40 +1100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2022-02-18 16:21:08 +1100 |
commit | dfe085d8dcd0bb1fe20cc2327e81c8064cead441 (patch) | |
tree | 6e20644c3381dbd830e1e8a694d747f82de7531e /crypto/xts.c | |
parent | fffe799b6cc980f967df2f3773dc53639dd68d7e (diff) | |
download | linux-dfe085d8dcd0bb1fe20cc2327e81c8064cead441.tar.bz2 |
crypto: xts - Add softdep on ecb
The xts module needs ecb to be present as it's meant to work
on top of ecb. This patch adds a softdep so ecb can be included
automatically into the initramfs.
Reported-by: rftc <rftc@gmx.de>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/xts.c')
-rw-r--r-- | crypto/xts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/xts.c b/crypto/xts.c index 6c12f30dbdd6..63c85b9e64e0 100644 --- a/crypto/xts.c +++ b/crypto/xts.c @@ -466,3 +466,4 @@ MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("XTS block cipher mode"); MODULE_ALIAS_CRYPTO("xts"); MODULE_IMPORT_NS(CRYPTO_INTERNAL); +MODULE_SOFTDEP("pre: ecb"); |