aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2008-11-07 15:11:47 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2008-12-25 11:01:40 +1100
commit69c35efcf1576ab5f00cba83e8ca740923afb6c9 (patch)
treefaf3bba45be45d530e3355c46d6bf2cd99d0e83c /include
parentcrypto: crc32c - Test descriptor context format (diff)
downloadlinux-dev-69c35efcf1576ab5f00cba83e8ca740923afb6c9.tar.xz
linux-dev-69c35efcf1576ab5f00cba83e8ca740923afb6c9.zip
libcrc32c: Move implementation to crypto crc32c
This patch swaps the role of libcrc32c and crc32c. Previously the implementation was in libcrc32c and crc32c was a wrapper. Now the code is in crc32c and libcrc32c just calls the crypto layer. The reason for the change is to tap into the algorithm selection capability of the crypto API so that optimised implementations such as the one utilising Intel's CRC32C instruction can be used where available. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include')
-rw-r--r--include/linux/crc32c.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/linux/crc32c.h b/include/linux/crc32c.h
index 508f512e5a2f..66fa8ff795ec 100644
--- a/include/linux/crc32c.h
+++ b/include/linux/crc32c.h
@@ -3,9 +3,6 @@
#include <linux/types.h>
-extern u32 crc32c_le(u32 crc, unsigned char const *address, size_t length);
-extern u32 crc32c_be(u32 crc, unsigned char const *address, size_t length);
-
-#define crc32c(seed, data, length) crc32c_le(seed, (unsigned char const *)data, length)
+extern u32 crc32c(u32 crc, const void *address, unsigned int length);
#endif /* _LINUX_CRC32C_H */