From: Eric Biggers Date: Mon, 16 Mar 2026 20:56:59 +0000 (-0700) Subject: crypto: crc32c - Remove another outdated comment X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d61686cf10aa7203001d24d86369aa1af4d06319;p=thirdparty%2Fkernel%2Flinux.git crypto: crc32c - Remove another outdated comment This code just calls crc32c(), which has a number of different implementations, not just the byte-at-a-time table-based one. Acked-by: Ard Biesheuvel Link: https://lore.kernel.org/r/20260316205659.17936-1-ebiggers@kernel.org Signed-off-by: Eric Biggers --- diff --git a/crypto/crc32c.c b/crypto/crc32c.c index c6c9c727b25b4..9c9d0ae21101e 100644 --- a/crypto/crc32c.c +++ b/crypto/crc32c.c @@ -37,11 +37,6 @@ struct chksum_desc_ctx { u32 crc; }; -/* - * Steps through buffer one byte at a time, calculates reflected - * crc using table. - */ - static int chksum_init(struct shash_desc *desc) { struct chksum_ctx *mctx = crypto_shash_ctx(desc->tfm);