diff options
author | Darrick J. Wong <djwong@us.ibm.com> | 2012-03-23 18:02:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-23 19:58:38 -0400 |
commit | 6a0962b22eccc70b8421014022c07efcf194a95e (patch) | |
tree | b5f6583deeb3ca02f837ac446e1ecdea10b8a54b /crypto/Kconfig | |
parent | 46c5801eaf86e83cb3a4142ad35188db5011fff0 (diff) |
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/Kconfig | 1 |
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" | |||
308 | config CRYPTO_CRC32C | 308 | config CRYPTO_CRC32C |
309 | tristate "CRC32c CRC algorithm" | 309 | tristate "CRC32c CRC algorithm" |
310 | select CRYPTO_HASH | 310 | select CRYPTO_HASH |
311 | select CRC32 | ||
311 | help | 312 | help |
312 | Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used | 313 | Castagnoli, et al Cyclic Redundancy-Check Algorithm. Used |
313 | by iSCSI for header and data digests and by others. | 314 | by iSCSI for header and data digests and by others. |