Re: [PATCH] crypto: crc32 - remove "_generic" from filenames
From: Eric Biggers
Date: Tue Apr 08 2025 - 22:50:32 EST
On Sat, Apr 05, 2025 at 11:33:24AM -0700, Eric Biggers wrote:
> From: Eric Biggers <ebiggers@xxxxxxxxxx>
>
> Since crc32_generic.c and crc32c_generic.c now expose both the generic
> and architecture-optimized implementations via the crypto_shash API,
> rather than just the generic implementations as they originally did,
> remove the "_generic" part of the filenames.
>
> Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx>
> ---
> crypto/Makefile | 8 ++++----
> crypto/{crc32_generic.c => crc32.c} | 0
> crypto/{crc32c_generic.c => crc32c.c} | 0
> 3 files changed, 4 insertions(+), 4 deletions(-)
> rename crypto/{crc32_generic.c => crc32.c} (100%)
> rename crypto/{crc32c_generic.c => crc32c.c} (100%)
Applied to https://web.git.kernel.org/pub/scm/linux/kernel/git/ebiggers/linux.git/log/?h=crc-next
- Eric