summaryrefslogtreecommitdiffstats
path: root/crypto/Kconfig
diff options
context:
space:
mode:
authorDarrick J. Wong2012-03-23 23:02:25 +0100
committerLinus Torvalds2012-03-24 00:58:38 +0100
commit6a0962b22eccc70b8421014022c07efcf194a95e (patch)
treeb5f6583deeb3ca02f837ac446e1ecdea10b8a54b /crypto/Kconfig
parentcrc32: bolt on crc32c (diff)
downloadkernel-qcow2-linux-6a0962b22eccc70b8421014022c07efcf194a95e.tar.gz
kernel-qcow2-linux-6a0962b22eccc70b8421014022c07efcf194a95e.tar.xz
kernel-qcow2-linux-6a0962b22eccc70b8421014022c07efcf194a95e.zip
crypto: crc32c should use library implementation
Since lib/crc32.c now provides crc32c, remove the software implementation here and call the library function instead. Signed-off-by: Darrick J. Wong <djwong@us.ibm.com> Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: Bob Pearson <rpearson@systemfabricworks.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r--crypto/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 6318edd6a457..21ff9d015432 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -308,6 +308,7 @@ comment "Digest"
config CRYPTO_CRC32C
tristate "CRC32c CRC algorithm"
select CRYPTO_HASH
+ select CRC32
help
Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used
by iSCSI for header and data digests and by others.