diff options
| author | Colin Ian King <[email protected]> | 2019-03-14 23:08:38 +0000 |
|---|---|---|
| committer | Thomas Gleixner <[email protected]> | 2019-03-21 12:24:38 +0100 |
| commit | 725e29db8cb9058976559bc3239c97ef7db40eea (patch) | |
| tree | 8df5a8b29d741bbd816498f988a38dbb3927e2f5 | |
| parent | a9c640ac96e19b3966357ec9bb586edd2e1e74de (diff) | |
x86/lib: Fix indentation issue, remove extra tab
The increment of buff is indented one level too deeply, clean
this up by removing a tab.
Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: "H . Peter Anvin" <[email protected]>
Cc: [email protected]
Link: https://lkml.kernel.org/r/[email protected]
| -rw-r--r-- | arch/x86/lib/csum-partial_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/csum-partial_64.c b/arch/x86/lib/csum-partial_64.c index 9baca3e054be..e7925d668b68 100644 --- a/arch/x86/lib/csum-partial_64.c +++ b/arch/x86/lib/csum-partial_64.c @@ -94,7 +94,7 @@ static unsigned do_csum(const unsigned char *buff, unsigned len) : "m" (*(unsigned long *)buff), "r" (zero), "0" (result)); --count; - buff += 8; + buff += 8; } result = add32_with_carry(result>>32, result&0xffffffff); |