Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

powerpc/crc: rename crc32-vpmsum_core.S to crc-vpmsum-template.S

Rename crc32-vpmsum_core.S to crc-vpmsum-template.S to properly convey
that (a) it actually generates code for both 32-bit and 16-bit CRCs, not
just 32-bit CRCs; and (b) it has "template" semantics, like x86's
crc-pclmul-template.S, in the sense that it's included by other files.

Reviewed-by: "Martin K. Petersen" <martin.petersen@oracle.com>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Link: https://lore.kernel.org/r/20250424002038.179114-5-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>

+2 -2
arch/powerpc/lib/crc32-vpmsum_core.S arch/powerpc/lib/crc-vpmsum-template.S
+1 -1
arch/powerpc/lib/crc32c-vpmsum_asm.S
··· 839 839 840 840 #define CRC_FUNCTION_NAME __crc32c_vpmsum 841 841 #define REFLECT 842 - #include "crc32-vpmsum_core.S" 842 + #include "crc-vpmsum-template.S"
+1 -1
arch/powerpc/lib/crct10dif-vpmsum_asm.S
··· 842 842 .octa 0x0000000000000000000000018bb70000 843 843 844 844 #define CRC_FUNCTION_NAME __crct10dif_vpmsum 845 - #include "crc32-vpmsum_core.S" 845 + #include "crc-vpmsum-template.S"