Skip to content

Commit fea1c94

Browse files
Avenger-285714chenhuacai
authored andcommitted
LoongArch/crypto: Clean up useless assignment operations
The LoongArch CRC32 hw acceleration is based on arch/mips/crypto/ crc32-mips.c. While the MIPS code supports both MIPS32 and MIPS64, but LoongArch32 lacks the CRC instruction. As a result, the line "len -= sizeof(u32)" is unnecessary. Removing it can make context code style more unified and improve code readability. Cc: stable@vger.kernel.org Reviewed-by: WANG Xuerui <git@xen0n.name> Suggested-by: Wentao Guan <guanwentao@uniontech.com> Signed-off-by: Yuli Wang <wangyuli@uniontech.com> Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
1 parent 9c68ece commit fea1c94

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

arch/loongarch/crypto/crc32-loongarch.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ static u32 crc32_loongarch_hw(u32 crc_, const u8 *p, unsigned int len)
4444

4545
CRC32(crc, value, w);
4646
p += sizeof(u32);
47-
len -= sizeof(u32);
4847
}
4948

5049
if (len & sizeof(u16)) {
@@ -80,7 +79,6 @@ static u32 crc32c_loongarch_hw(u32 crc_, const u8 *p, unsigned int len)
8079

8180
CRC32C(crc, value, w);
8281
p += sizeof(u32);
83-
len -= sizeof(u32);
8482
}
8583

8684
if (len & sizeof(u16)) {

0 commit comments

Comments
 (0)