diff options
author | Tobias Jordan <kernel@cdqe.de> | 2020-10-15 20:11:38 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-10-30 10:38:21 +0100 |
commit | 67f4d89b4efa2726eb0f04e6987dbcde3e7c24a0 (patch) | |
tree | 94c49fcbec844135cbee2b1e2380569112e89a65 /lib | |
parent | 3b0503e30811dc21a76bc0f42c01ebbfb371d46a (diff) | |
download | linux-stable-67f4d89b4efa2726eb0f04e6987dbcde3e7c24a0.tar.gz linux-stable-67f4d89b4efa2726eb0f04e6987dbcde3e7c24a0.tar.bz2 linux-stable-67f4d89b4efa2726eb0f04e6987dbcde3e7c24a0.zip |
lib/crc32.c: fix trivial typo in preprocessor condition
[ Upstream commit 904542dc56524f921a6bab0639ff6249c01e775f ]
Whether crc32_be needs a lookup table is chosen based on CRC_LE_BITS.
Obviously, the _be function should be governed by the _BE_ define.
This probably never pops up as it's hard to come up with a configuration
where CRC_BE_BITS isn't the same as CRC_LE_BITS and as nobody is using
bitwise CRC anyway.
Fixes: 46c5801eaf86 ("crc32: bolt on crc32c")
Signed-off-by: Tobias Jordan <kernel@cdqe.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Cc: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link: https://lkml.kernel.org/r/20200923182122.GA3338@agrajag.zerfleddert.de
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/crc32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crc32.c b/lib/crc32.c index a6c9afafc8c8..1a5d08470044 100644 --- a/lib/crc32.c +++ b/lib/crc32.c @@ -328,7 +328,7 @@ static inline u32 __pure crc32_be_generic(u32 crc, unsigned char const *p, return crc; } -#if CRC_LE_BITS == 1 +#if CRC_BE_BITS == 1 u32 __pure crc32_be(u32 crc, unsigned char const *p, size_t len) { return crc32_be_generic(crc, p, len, NULL, CRC32_POLY_BE); |