diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2008-11-11 12:20:06 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-12-25 11:01:43 +1100 |
commit | 0426c166424ea6d3d0412f47879c8ba268f874c4 (patch) | |
tree | 460a5d01e68c2c71a65bd1aa34da6542517c57c0 /include/linux | |
parent | 53b146ae598268edbe2bf7ea7dfec721d51adddd (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')
-rw-r--r-- | include/linux/crc32c.h | 3 |
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 */ |