diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2008-11-13 22:05:13 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-12-25 11:01:48 +1100 |
commit | 93027354d6e8a66a12dedb89d59b21cf7c2d35ed (patch) | |
tree | 68a4e3309ab35dcae4b07ca60b3cfc656dac539c /lib/Kconfig | |
parent | aa1a85dbd1d3265ca36f684026fe7689b7836bed (diff) | |
download | linux-3.10-93027354d6e8a66a12dedb89d59b21cf7c2d35ed.tar.gz linux-3.10-93027354d6e8a66a12dedb89d59b21cf7c2d35ed.tar.bz2 linux-3.10-93027354d6e8a66a12dedb89d59b21cf7c2d35ed.zip |
libcrc32c: Select CRYPTO in Kconfig
Selecting CRYPTO_CRC32C is not enough as CRYPTO which CRYPTO_CRC32C
depends on may be disabled. This patch adds the select on CRYPTO.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index ce303f13ed9..fd4118e097f 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -64,6 +64,7 @@ config CRC7 config LIBCRC32C tristate "CRC32c (Castagnoli, et al) Cyclic Redundancy-Check" + select CRYPTO select CRYPTO_CRC32C help This option is provided for the case where no in-kernel-tree |