MIPS: Fix trailing semicolon
authorLuis de Bethencourt <luisbg@kernel.org>
Tue, 23 Jan 2018 13:38:03 +0000 (13:38 +0000)
committerJames Hogan <jhogan@kernel.org>
Wed, 24 Jan 2018 11:17:20 +0000 (11:17 +0000)
The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Fixes: d0f0f63ac137 ("MIPS: Rewrite csum_fold to plain C.")
Signed-off-by: Luis de Bethencourt <luisbg@kernel.org>
Cc: Joe Perches <joe@perches.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/18517/
Signed-off-by: James Hogan <jhogan@kernel.org>
arch/mips/include/asm/checksum.h

index 77cad232a1c61cde88587230374ba153dd6bc975..e8161e4dfde7039a80cb3875bba7b9415520c67b 100644 (file)
@@ -110,7 +110,7 @@ __wsum csum_partial_copy_nocheck(const void *src, void *dst,
  */
 static inline __sum16 csum_fold(__wsum csum)
 {
-       u32 sum = (__force u32)csum;;
+       u32 sum = (__force u32)csum;
 
        sum += (sum << 16);
        csum = (sum < csum);