aboutsummaryrefslogtreecommitdiff
path: root/include/linux/crc32c.h
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2008-11-11 12:20:06 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2008-12-25 11:01:43 +1100
commit0426c166424ea6d3d0412f47879c8ba268f874c4 (patch)
tree460a5d01e68c2c71a65bd1aa34da6542517c57c0 /include/linux/crc32c.h
parent53b146ae598268edbe2bf7ea7dfec721d51adddd (diff)
libcrc32c: Add crc32c_le macro
The bnx2x driver actually uses the crc32c_le name so this patch restores the crc32c_le symbol through a macro. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/linux/crc32c.h')
-rw-r--r--include/linux/crc32c.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/crc32c.h b/include/linux/crc32c.h
index 66fa8ff795ec..bd8b44d96bdc 100644
--- a/include/linux/crc32c.h
+++ b/include/linux/crc32c.h
@@ -5,4 +5,7 @@
extern u32 crc32c(u32 crc, const void *address, unsigned int length);
+/* This macro exists for backwards-compatibility. */
+#define crc32c_le crc32c
+
#endif /* _LINUX_CRC32C_H */